-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartPage.html
37 lines (32 loc) · 1.01 KB
/
startPage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Start Page - Labration 1</title>
<link rel="icon shortcut" href="assets/icons/icon.ico" type = "image/ico" />
<link rel="stylesheet" type="text/css" href="assets/css/styleStart.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<video autoplay muted loop >
<source src="assets/video/video.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<div class ="container">
<main class="flex-container">
<a href="productsPage.html" id ="tab1">Products</a>
<a href="aboutUsPage.html" id ="tab2">About Us</a>
<a href="eventPage.html" id ="tab3">Events</a>
<a href="contactUsPage.html" id ="tab4">Contact Us</a>
</main>
<aside class="atTop"></aside>
<aside class="atBottom"></aside>
<footer>
Labration 1
<br>GitHub Page: https://github.com/Carpenteri1
<br>School: Campus-Varberg SUT-19
<br>Iceland Reykjavik
<br>LittleShopOfTrees@fakeEmail.com
</footer>
</div><!--content-->
</body>
</html>