Skip to content

Commit

Permalink
Add boilerplate HTML and begin page content
Browse files Browse the repository at this point in the history
  • Loading branch information
NLXHAR001 committed Jul 10, 2022
1 parent 1d36f25 commit 942b4e5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
11 changes: 11 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Excursion</title>
<link href="./resources/css/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Discover hidden places in the world around you</h1>
<a>Download Excursion (Coming Soon!).</a>
</body>
</html>
15 changes: 15 additions & 0 deletions resources/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
h1{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: normal;
font-size: 50px;
color: white;
text-align: center;
}
body{
background-color: black;
}
a{
color: aquamarine;
text-align: center;
font-size: 16px;
}

0 comments on commit 942b4e5

Please sign in to comment.