forked from emiliegervais/CS50
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
99 lines (99 loc) · 3.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!--
Recently completed similar projects
for freeCodeCamp.org's Responsive Web Design Certification.
I've recycled most of the content & ideas I've used on these onto this project.
Codepen links:
- https://codepen.io/hexangel616/pen/dyPOaZz
- https://codepen.io/hexangel616/pen/abbNRWd
- https://codepen.io/hexangel616/pen/MWYbbxy
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<title>About</title>
</head>
<body>
<header class="fixed-top">
<nav>
<ul>
<li><a href="./" title="Home">Home</a></li>
<li><a href="./projects.html" title="Projects">Projects</a></li>
<li><a href="./about.html" title="About">About</a></li>
<li><a href="./contact.html" title="Contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="row">
<div class="col-md-4">
<h1>About me</h1>
</div>
<div class="col-md-4 ml-auto">
</div>
</div>
<div class="row">
<div class="col-md-3 ml-md-auto">
<ul class="small font-weight-bold">
<li>Born: 09/27/1972</li>
<li>Birthplace: Vancouver, BC.</li>
</ul>
<code class="float-right">meow</code>
</div>
<div class="col-md-3 ml-md-auto">
</div>
</div>
<div class="row">
<div class="col-auto mr-auto">
<!-- Cat walking on keyboard right there -->
<kbd>98671QSdoijazd54dqs7fqsàpxxxxxxxxxxxxxxxxx</kbd>
</div>
<div class="col-auto">
<p class="font-italic">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-4 ml-auto">
<!-- Cat walking on keyboard again… -->
<kbd>qsdqoiksdjpoqijsdqjposidaozpirn&é"</kbd>
</div>
</div>
<div class="row">
<div class="col-md-3 ml-md-auto">
<h3>,,, so original!</h3>
<img
id="original-doge"
src="https://images-eu.ssl-images-amazon.com/images/I/81-yKbVND-L.png"
alt="Doge Original"
/>
</div>
<div class="col-md-3 ml-md-auto d-flex justify-content-center align-items-center">
<blockquote cite="https://youtu.be/UrjsvQVPofU">
Meow meow, meeeeeooooooooooow…
</blockquote>
</div>
</div>
<div class="row">
<div class="col-auto mr-auto">
</div>
<div class="col-auto bg-warning">
</div>
</div>
</main>
<footer class="fixed-bottom">
<img src="https://web.archive.org/web/20091027092521/http://geocities.com/henjea/cat.gif" alt="cat.gif" />
</footer>
</body>
</html>