-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathindex.html
35 lines (34 loc) · 1023 Bytes
/
index.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
<!-- HTML - Personal Site -->
<!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HTML - Personal Site">
<meta name="author" content="b-tomi">
<title>HTML - Personal Site</title>
</head>
<body>
<img src="circle-cropped.png" alt="Photo of a beagle">
<h1>b-tomi</h1>
<p><em>Nap <strong>Aficionado</strong></em></p>
<!-- generated by https://lipsum.com -->
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae sodales mauris. Phasellus sollicitudin semper tortor, vitae mollis nunc cursus.</p>
<hr>
<h3>This is a list</h3>
<!-- ul>li*3 -->
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
<h3>This is an ordered list</h3>
<!-- ol>li*3 -->
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ol>
<p>This is a <a href="https://github.com/b-tomi">link</a>.</p>
</body>
</html>