-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
141 lines (117 loc) · 4.66 KB
/
about.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Glide JS-->
<link rel="stylesheet" href="/css/glide.core.min.css" />
<link rel="stylesheet" href="/css/glide.theme.min.css" />
<!-- FontAwesome -->
<script src="https://kit.fontawesome.com/fdaa837f4d.js" crossorigin="anonymous"></script>
<!-- Animate Style -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Style Sheet-->
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/about.css">
<!-- favicon -->
<link rel="shortcut icon" href="./assets/logo_fox.png" type="image/png">
<title>About the Developer and Photographer</title>
</head>
<body>
<header>
<nav class="nav">
<div class="logo">
<a href="index.html">
<p>Kenneth <br> Brandon</p>
</a>
</div>
<div class="ham" id="ham">
<span></span>
<span></span>
<span></span>
</div>
<div class="desktop-nav" id="desktop-nav">
<ul id="desktop-nav__links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="web-project.html">Web Development</a></li>
<li><a href="photography.html">Photography</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="toggle">
<input type="checkbox" name="" class="checkbox" id="checkbox">
<label for="checkbox" class="label">
<div class="ball"></div>
</label>
</div>
</div>
</nav>
<div class="mobile-nav" id="mobile-nav">
<ul id="mobile-nav__links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="web-project.html">Web Development</a></li>
<li><a href="photography.html">Photography</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</header>
<main>
<div class="overlay" id="overlay"></div>
<div class="spacer-lg"></div>
<div class="about">
<div class="about__title">
<h1>Hey there,<span class="emoji-hand">👋🏾</span> it's nice to meet you!</h1>
</div>
<div class="about__headshot">
</div>
<div class="about__text">
<p>
I’m Kenneth, a thoughtful creative that sees beauty everywhere, even in the most mundane of things.
</p>
<p>
I’m a passionate creative that believes in the first impression and that everyone has a story that
deserves to be told. No matter what your reason for having a digital presence is, it’s important to
have a great one!</p>
<p> I enjoy anything within the world of art, coffee, photography and of course designing cool things to share
with the people of the world.
When not taking photos or working on websites, you’ll find me scouring the internet for new music, going on
family adventures, learning random skills, or enjoying a nice cup of coffee.</p>
</div>
<div class="about__fill-image"></div>
<div class="about__contact">
<p>
Have some questions? Get in touch so we can chat, talk to you soon!
</p>
<a href="contact.html">Contact</a>
</div>
</div>
</main>
<div class="spacer-sm"></div>
<footer class="footer">
<div class="footer__site-map">
<div class="footer__site-map--link">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="web-project.html">Web Design</a>
<a href="photography.html">Photogaphy</a>
</div>
<div class="footer__social">
<p>life inspires creation, creation inspires life.</p>
<div class="footer__social--icons">
<a href="https://www.twitter.com/mrdebonairfox"><i class="fa-brands fa-twitter"></i></a>
<a href="https://www.github.com/kbrandon19"><i class="fa-brands fa-github"></i></a>
<a href="https://www.instagram.com/mrdebonairfox"><i class="fa-brands fa-instagram"></i></a>
<a href="mailto:kbrandon319@gmail.com"><i class="fa-solid fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/kdbrand"><i class="fa solid fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="footer__copyright">© Copyright 2022. All Rights Reserved.</div>
</footer>
<script src="./js/app.js"></script>
<script src="./js/menu-scroll.js"></script>
</body>
</html>