-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbio.html
More file actions
48 lines (42 loc) · 1.81 KB
/
bio.html
File metadata and controls
48 lines (42 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SwagMath</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/tablogo.png">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3Z0FFS6BV9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3Z0FFS6BV9');
</script>
</head>
<body>
<nav class="navbar">
<div class="navdiv">
<div class="logo">
<a href="index.html" class="wordlogo">SwagMath
<img src="images/logo2.png" class="logoimg">
</a>
</div>
<ul>
<li><a href="index.html"><img src="images/homelogo.png" class="navlogo">Home</a></li>
<li><a href="#"><img src="images/biologo.png" class="navlogo">Bio</a></li>
<li><a href="contact.html"><img src="images/contactlogo.png" class="navlogo">Contact</a></li>
</ul>
</div>
</nav>
<h1>Bio</h1>
<div class="divider"></div>
<div id="biotext">
<p>Hello! My name is David, and I'm currently studying computer science at Purdue University.</p>
<p>I created this website to see what I was capable of with html, css, and javascript.</p>
<p>This website was inspired by <a href="https://www.duckmath.org" class="biolink">duckmath.org</a>, which was created by <a href="https://github.com/maddox05" class="biolink">Maddox</a>, a friend I met at Purdue.</p>
<p>Feel free to add me on <a href="https://github.com/dives05" class="biolink">Github</a>, I will try to follow back.</p>
</div>
</body>
</html>