-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
73 lines (73 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<link rel="stylesheet" href="assets/css/nav.css" type="text/css" />
<link rel="stylesheet" href="assets/css/content.css" type="text/css" />
<link rel="stylesheet" href="assets/css/about.css" type="text/css" />
<script
src="https://kit.fontawesome.com/f03b43d7c4.js"
crossorigin="anonymous"
></script>
<title>About</title>
</head>
<body>
<nav>
<div class="container-nav">
<div class="left-nav">
<div id="nav-icon" onclick="toggleNav()">
<span></span>
<span></span>
<span></span>
</div>
<a href="index.html">Home</a>
</div>
<div class="right-nav">
<ul>
<li><a href="#" class="active">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<div class="lang-dropdown">
<li>
<button id="lang">
<i class="fas fa-globe"></i>
</button>
<div class="lang-content">
<a href="#" class="active">English</a>
<a href="/ja/about.html">日本語</a>
</div>
</li>
</div>
</ul>
</div>
<div class="side-nav" id="side-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#" class="active">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<h1>About Me!</h1>
<div class="container-about">
<div class="container-about-info">
<p>
I've been working for awhile and I'd love to work with you
on whatever project you might have.
</p>
</div>
<div class="container-about-deco">
<img src="https://source.unsplash.com/category/people" alt="" />
</div>
</div>
<footer>
<span>© 2020 Keith Shintaku</span>
</footer>
</body>
<script src="/assets/scripts/navbar.js"></script>
</html>