-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
47 lines (46 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>About Me</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<title>About Me</title>
</head>
<body>
<nav class="site-nav">
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div>
</nav>
<main>
<div class="aboutbox">
<div class="abouttext">
<h1>About Me</h1>
<p>Hey my name is Jeff BuCher I'm from Youngstown, Ohio.</p>
<p>
Currently I've been grinding and trying to learn as much as I can
about linux and SWE.
</p>
<p>You can find me chilling with my cats Bus and Alyssa.</p>
</div>
<div class="aboutimg">
<img src="images/Me-EDIT-1.jpg" alt="Picture of me" />
<img
src="images/mykitties.jpg"
alt="my cats Bus and Alyssa"
height="300"
width="300"
/>
</div>
</div>
</main>
</body>
</html>