-
Notifications
You must be signed in to change notification settings - Fork 0
/
credits.html
91 lines (89 loc) · 5.08 KB
/
credits.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
<!--NOT-SO-SECRET CREDITS PAGE. Links from footer.-->
<!DOCTYPE html>
<html lang="en">
<head>
<title> Gizelle's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta charset="utf-8">
<link href="css/style.css" type="text/css" rel="stylesheet" integrity="sha384-qzYMgY8vDhOuMvTyeRkuHCWHDAsZYS8MpwZxlc2heYsyImNtqebhYJprY3vCHPFc"/>
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<!--HAMBURGER MENU AND NAVBAR-->
<div class="nav">
<label for="toggle">☰</label>
<input type="checkbox" id="toggle"/>
<nav class="menu"> <!--HAMBURGER ADDED CLASS MENU-->
<a href="index.html">HOME</a>
<a href="blogposts.html">BLOG</a>
<a href="portfolio.html">PORTFOLIO</a>
<a href="contact.html">CONTACT</a>
<a href="credits.html" class="active">CREDITS</a>
</nav>
</div>
<!--HEADER-->
<header class="container" id="header-image">
<h1>Photo Credits</h1>
</header>
<!--MAIN-->
<main class="credit-main">
<section class="textbox">
<h2>CREDITS</h2>
<p>A special thank you to stock photographers.</p>
<!--PHOTO SECTION-->
<div class="credit-row">
<!--First Column of Photos-->
<div class="credit-column">
<a href="https://unsplash.com/photos/oBs6D-q0kgM?utm_source=unsplash&utm_medium=referral&utm_content=creditShareLink"><img src="images/blog/leslie-jones-oBs6D-q0kgM-unsplash.jpg" class="credit-images" alt="Space Invaders"><br>Photo by Leslie Jones on Unsplash</a>
<img src="images/portrait653.jpg" class="credit-images" alt="Portrait"><p>Photo and Painting by Gizelle v.Z. © All rights reserved.</p>
<a href="https://unsplash.com/photos/f4bfvVXKZP8"><img src="images/ocean13.jpg" class="credit-images" alt="Ocean background"><br>Photo by Silas Baisch on Unsplash</a>
</div>
<!--Second Column of Photos-->
<div class="credit-column">
<a href="https://unsplash.com/photos/K5gBXHSvtkc"><img src="images/blog/paint.jpg" class="credit-images" alt="Watercolor Paint"><br>Photo by Denise Johnson on Unsplash</a>
<a href="https://unsplash.com/photos/HH4WBGNyltc"><img src="images/blog/jaredd-craig-HH4WBGNyltc-unsplash.jpg" class="credit-images" alt="Books"><br>Photo by Jarred Craig on Unsplash</a>
<a href="https://unsplash.com/photos/YKW0JjP7rlU"><img src="images/blog/photos-hobby-YKW0JjP7rlU-unsplash.jpg" class="credit-images" alt="Robot"><br>Photo by Photos Hobby on Unsplash</a>
<a href="https://unsplash.com/photos/Q8m8cLkryeo"><img src="images/blog/edwin-hooper-Q8m8cLkryeo-unsplash.jpg" class="credit-images" alt="World Closed"><br>Photo by Edwin Hooper on Unsplash</a>
</div>
</div>
</section>
</main>
<!--FOOTER-->
<footer id="footer">
<!--Footer left section-->
<div class ="footer-left">
<div class="footer-links">
<a href="index.html">Home</a>
<br>
<a href="blogposts.html">Blog</a>
<br>
<a href="portfolio.html">Portfolio</a>
<br>
<a href="contact.html">Contact</a>
</div>
<div class="social-media">
<a href="https://www.linkedin.com/in/gizellevz" target="_blank"><img src="images/libug.png" class="socialbugs" alt="LinkedIn"></a>
<a href="https://github.com/Ellezique" target="_blank"><img src="images/gitbug.png" class="socialbugs" alt="GitHub"></a>
</div>
</div>
<!--Footer middle section-->
<div class="footer-center">
<div class="footerportrait">
<a href="portfolio.html"><img src="images/portrait653.jpg" id="footerportrait" alt="Watercolor Portrait"></a>
</div>
<p>© 2021 Gizelle v.Z. All Rights Reserved</p>
</div>
<!--Footer right section-->
<div class="footer-right">
<div class="contact-details">
<p>Brisbane</p>
<p>Australia</p>
<p><a href="mailto:[email protected]" target="_blank">Contact by Email</a></p>
<p><a href="credits.html" target="_blank">Photo Credits</a></p>
</div>
</div>
</footer>
</body>
</html>