-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
70 lines (58 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link rel="stylesheet" href="./other/mystyle.css">
<link rel="shortcut icon" type="image/x-icon" href="./other/favicon.ico">
</head>
<body>
<div class="whole">
<div class="nav">
<!-- <div class='logo'>
<i class="fab fa-github fa-2x"></i>
</div> -->
<div class="logoLink">
<a href="index.html">
<div class="logoimg">
</div>
</a>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="works.html">Portfolio</a>
<a href="react.html">React</a>
<a href="contact.html">Contact</a>
</div>
<button id="button" onClick='menu()' class='hamburger-icon'>
<i class="fas fa-bars fa-2x"></i>
</button>
<div id='menu' class="mobile-menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="works.html">Portfolio</a>
<a href="react.html">React</a>
<a href="contact.html">Contact</a>
</div>
</div>
<div class='hero' aria-label="Background image is the moon at night">
<h1>WELCOME</h1>
<h3>I'm Vachan and it is nice to meet you!</h3>
<p>I'm a web development student from Calgary!</p>
<p>You may reach me at [email protected]</p>
</div>
<div class="footer">
<div class='footer-content'>
<i class="fab fa-facebook-f fa-2x"></i>
<a href="https://github.com/vd1992"><i class="fab fa-github fa-2x"></i></a>
<a href="https://ca.linkedin.com/in/vachan-dhillon-31166691"><i class="fab fa-linkedin fa-2x"></i></a>
</div>
</div>
</div>
</body>
<script src="other/scripts.js"></script>
</html>