Skip to content

Commit

Permalink
made our page and styled it
Browse files Browse the repository at this point in the history
  • Loading branch information
akedges committed Sep 24, 2024
1 parent 6f3af0a commit ebeae6a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
17 changes: 17 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.huge-text {
font-size: 150px;
font-family: fantasy;
text-align: center;
color:cornflowerblue;
text-shadow: 10px 10px 5px black;
transition: 0.5s;
}

.huge-text:hover {
color:blue;
}

.tiny-text {
font-size: 12px;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/main.css">
<title>Connex's Little Piece of the Internet</title>
</head>
<body>
<h1 class="huge-text">Connex's <span class="tiny-text">little</span> Piece of the Internet
</h1>
<p>We went to Old Street. We made a webpage. We added some CSS. We thought what to do next...</p>
</body>
</html>

0 comments on commit ebeae6a

Please sign in to comment.