Initial Upload
This commit is contained in:
12
index.html
Normal file
12
index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<ul>
|
||||
<li><a href="./family/index.html">Family</a></li>
|
||||
<li><a href="./learning/index.html">Learning</a></li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
19
learning/index.html
Normal file
19
learning/index.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Rylie's Website</h1>
|
||||
<h2>About Me</h2>
|
||||
<p>meep</p>
|
||||
<h2>Hobbies</h2>
|
||||
<p>moop</p>
|
||||
<h3>Favorite Games</h3>
|
||||
<p>ur mom</p>
|
||||
<a href="../index.html" class="home-button">Go Home</a>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
30
learning/style.css
Normal file
30
learning/style.css
Normal file
@@ -0,0 +1,30 @@
|
||||
h1, h2, h3{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align: left;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: rebeccapurple;
|
||||
}
|
||||
|
||||
.home-button {
|
||||
display: inline-block;
|
||||
padding: 10px 20px;
|
||||
background-color: #d9a2f3;
|
||||
color: #060009;
|
||||
text-decoration: none;
|
||||
border-radius: 5px;
|
||||
transition: background-color 0.3s;
|
||||
margin-top: 200px;
|
||||
margin-bottom: 100px;
|
||||
|
||||
}
|
||||
|
||||
.home-button:hover {
|
||||
background-color: rgb(0, 0, 12);
|
||||
color: #d9a2f3;
|
||||
}
|
||||
Reference in New Issue
Block a user