Skip to content

Commit

Permalink
add stylesheet. Add images to show refrence
Browse files Browse the repository at this point in the history
  • Loading branch information
jolbol1 committed May 22, 2021
1 parent 17916b8 commit 1d3d34e
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
Binary file added excursion.webp
Binary file not shown.
Binary file added excursion_redline.webp
Binary file not shown.
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>Excursion</title>
<link href="./style.css" rel="stylesheet">
</head>
<body>
<header>
Expand All @@ -15,7 +16,7 @@ <h1>Discover hidden places in the world around you</h1>
<a class="download" href="./index.html">Download Excursion (Coming Soon)</a>
</section>
<section class="video">
<video src="https://content.codecademy.com/programs/freelance-one/excursion/videos/excursion.mp4" autoplay controls>Cannot Load Video</video>
<video src="https://content.codecademy.com/programs/freelance-one/excursion/videos/excursion.mp4" autoplay loop muted>Cannot Load Video</video>
</section>
<section class="about">
<h2>Your personal travel guide</h2>
Expand Down
31 changes: 31 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
body {
background-color: black;
font-family: Verdana, sans-serif;
color: white;
text-align: center;
}

h1 {
font-weight: normal;
font-size: 50px;

}

.download {
color: aquamarine;
font-size: 16px;
}

h2 {
font-weight: 300;
font-size: 42px;
}

main p {
font-size: 21px;
color: gray;
}

footer p {
text-align: right;
}

0 comments on commit 1d3d34e

Please sign in to comment.