-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (57 loc) · 2.63 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="Description" content="home page for potfolio website for Jack Brown. ">
<title id="title">Home- Portfolio</title>
<link rel="stylesheet" href="globalstylesheet.css">
<link rel="stylesheet" href="indexstylesheet.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Abel&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="pagestructure">
<header>
<!-- Start of the NavBar -->
<nav>
<ul class="navcontainer" aria-label="navigationbar">
<li class="navitem"> <a href="index.html">Home </a></li>
<li class="navitem"> <a href="About.html">About </a></li>
<li class="navitem"> <a href="ContactMe.html">Contact Me</a></li>
<li class="navitem"> <a href="Gallery.html">Gallery</a></li>
</ul>
</nav>
</header>
<!--Opening Video Pane-->
<main>
<div class="homegridcontainer">
<div class="homegriditem1">
<h1> <mark>Jack Brown <br>Videographer, Photographer and Designer </mark></h1>
</div>
<div class="homegriditem2">
<div class="svid"> </div>
<video controls loop autoplay muted aria-label="video of moving image of a highstreet in Seoul with two individuals in the foreground of the image and individuals moving quickly in the background">
<source src="videos/Seoul.mp4" type="video/mp4">
</video>
</div>
</div>
</main>
<!--closing video pane-->
<!-- Footer for all pages-->
<footer>
<div class="footerheading"> <h2>Jack Brown Designs ©</h2></div>
<ul class="footersocial">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
<li><a href="#"><i class="fa fa-youtube"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</footer>
<!-- end of the footer-->
</div>
</body>
</html>