-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
58 lines (55 loc) · 1.64 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
<!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" />
<title>Anton's Obsessions</title>
<link rel="stylesheet" href="index.css" />
<!-- defer makes this code occur at the end -->
<script defer src="script.js"></script>
<!-- loads Javascript file -->
<!-- <script type="text/javascript" src="/script.js"></script> -->
<title>About Me</title>
</head>
<body class="body">
<header id="header">
<div class="banner">
<!-- Title -->
<div id="titleBanner">
<div id="titleandsubtitle">
<h1 class="titleheader">Anton's Obsessions:</h1>
<h2 class="subtitleheader">Japanese Tools</h2>
</div>
<!-- Bottons: about, tools, projects, darkMode button -->
<div class="buttonGroup">
<div class="darkMode">
<button class="darkButton">Dark Mode</button>
</div>
<nav class="nagivationItems">
<div class="nav-item">
<a href="/index.html" class="button">Home</a>
</div>
<div class="nav-item">
<a href="/projects.html" class="button">Projects</a>
</div>
<div class="nav-item">
<a href="/tools.html" class="button">Tools</a>
</div>
<div class="nav-item">
<a href="/about.html" class="button">About</a>
</div>
</nav>
</div>
</div>
</div>
</header>
<section id="about">
<h3>About</h3>
<div id="aboutPageBody">
<p class="paragraph">This is me, doing an unrelated job.</p>
<img src="/images/me.jpg" class="me" />
</div>
</section>
</body>
</html>