-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (100 loc) · 4.97 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- this meta is added to support mutiple browser types and set the initial scale to improve cross browser conformity -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- description added to aid with search engine optimisation -->
<meta name="description" content="Personal portfolio for professional photography and videographer" />
<link rel="stylesheet" type="text/css" href="./css/styles.css" />
<!-- google font api to use their fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@200;400;500;600;700;800&family=Raleway&display=swap"
rel="stylesheet" />
<script src="https://unpkg.com/phosphor-icons"></script>
<!-- script tag to connect javascript - defer paramebter used to load parse the javascript file after everything else is loaded allowing for the script tag to be in head of dom -->
<script src="./js/index.js" defer></script>
<!-- Title of page - this will show in the browser tab -->
<title>Personal Portfolio</title>
</head>
<body>
<!-- Article tag used to wrap self-contained content -->
<main class="landing-page__background">
<!-- Header used to seperate introductory content -->
<header>
<nav id="navbar">
<h2 class="navbar__logo">Photo <span>Wizz</span></h2>
</nav>
</header>
<!-- section used to seperate standalone sections within the main element-->
<section class="landing-page-text__container">
<h1 class="landing-page__text">
I am Photo<span class="landing-page-text-span">Wizz</span>....photograpy and videography are my
<span class="landing-page__text-span2">Superpowers!</span>
</h1>
</section>
<div class="landing-page__navbox-container">
<!-- used a tag to wrap content to allow the user to directly click on content to navigate -->
<a class="landing-page__navbox"
href=" https://birkbeck2.github.io/web-development-and-user-experience---assessment-02-frosty81/about-me.html">
<section class="landing-page__navbox-content landing-page__navbox-inner-1">
<h1>About</h1>
<!-- hr tag used to add a visual seperator between title and description for asthetic purposes -->
<hr />
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Cupiditate, totam?
</p>
<hr />
</section>
</a>
<a class="landing-page__navbox"
href="https://birkbeck2.github.io/web-development-and-user-experience---assessment-02-frosty81/portfolio.html">
<section class="landing-page__navbox-content landing-page__navbox-inner-2">
<h1>Portfolio</h1>
<hr />
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Cupiditate, totam?
</p>
<hr />
</section>
</a>
<a class="landing-page__navbox"
href="https://birkbeck2.github.io/web-development-and-user-experience---assessment-02-frosty81/contact-me.html">
<section class="landing-page__navbox-content landing-page__navbox-inner-3">
<h1>Contact</h1>
<hr />
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Cupiditate, totam?
</p>
<hr />
</section>
</a>
</div>
</main>
<!-- Footer -->
<footer class="footer__container">
<!-- Footer links for social media including aria labels -->
<div class="footer__links-socials">
<a href="https://www.twitter.com" target="blank" aria-label="social media link to Twitter"><i
class="ph-twitter-logo ph-xl ph-2x"></i></a>
<a href="https://www.behance.com" target="blank" aria-label="social media link to Behance"><i
class="ph-behance-logo ph-xl ph-2x"></i></a>
<a href="https://www.youtube.com" target="blank" aria-label="social media link to Youtube"><i
class="ph-youtube-logo ph-xl ph-2x"></i></a>
<a href="https://www.facebook.com" target="blank" aria-label="social media link to Facebook"><i
class="ph-facebook-logo ph-xl ph-2x"></i></a>
</div>
<!-- Footer links for terms and conditions only for comestic purposes hence # used as href to not redirect anywhere-->
<div class="footer__links">
<a href="#">Terms and conditons</a>
<a href="#">Privacy Policy</a>
<p>©2023 PhotoWizz</p>
</div>
</footer>
</body>
</html>