added media and html for banner

This commit is contained in:
2021-11-06 11:42:34 -05:00
parent 9fe901412c
commit fb98e7b498
6 changed files with 28 additions and 1 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

BIN
Resources/camp.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -0,0 +1,18 @@
html {
background-color: black;
text-align: center;
}
header {
font-family: Verdana;
font-weight: normal;
font-size: 50px;
color: white;
text-align: center;
}
#download-excursion {
color: aquamarine;
font-size: 16px;
font-weight: bold;
}

BIN
Resources/excursion.mp4 Normal file

Binary file not shown.

BIN
Resources/phone.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 610 B

View File

@@ -5,6 +5,15 @@
<link src="style.css" rel="stylesheet"> <link src="style.css" rel="stylesheet">
</head> </head>
<body> <body>
<header>
<h1>Discover hidden places around the world around you</h1>
<aside>
<p id="download-excursion">Download Excursion (Coming soon!)</p>
</aside>
</header>
<video controls>
<source src="excursion.mp4" type="video/mp4">
<p>Video not supported :(</p>
</video>
</body> </body>
</html> </html>