-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
78 lines (61 loc) · 2.21 KB
/
about.html
File metadata and controls
78 lines (61 loc) · 2.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Andrae</title>
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/about/nav.css" type="text/css">
<link rel="stylesheet" href="css/about/main.css" type="text/css">
<link rel="stylesheet" href="css/about/gallery.css" type="text/css">
<link rel="stylesheet" href="css/about/header.css" type="text/css">
<style>
</style>
</head>
<body>
<div class="grid">
<div class="nav">
<nav class="nav-main">
<div class="btn-toggle-nav" onclick="toggleNav()"></div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
</div>
<!-- <div class="nav-grid">
<div class="nav-container">
<nav>
<a href="projects.html">Projects</a>
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</div>nav-grid -->
<div class="hero">
<h2>
<h1>
About me
</h1>
<h3></h3>
</h2>
</div>
<div class="aboutMeContainer">
<div class="windowSeat"></div>
<div class="aboutMe">
<p>I’m a web developer and graphic designer with a passion for technology. I focus my time between design
and
code
while working on awesome projects.
Currently my skillset has me focused mainly on front-end development, but I'm ready to tackle any
challenge.<br><br>
On my personal time I love traveling and playing video games.
</p>
</div>
</div>
</div> <!-- grid -->
<script src="js/gsap.min.js"></script>
<script src="js/appAbout.js"></script>
</body>
</html>