-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (26 loc) · 911 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Re Learning</title>
</head>
<body>
<p>Lorem ipsum dolor <strong>Lorem</strong> amet consectetur adipisicing elit. Quibusdam impedit perferendis tempore sed architecto itaque sint velit obcaecati iusto. Deleniti natus in maiores <em>forty</em> nostrum?</p>
<!-- this is not new to me -->
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<ol>
<li>4</li>
<li>5</li>
<li>6</li>
</ol>
<!-- anchor elemt -->
<a href="https://www.google.com" target="_blank" rel="noopener noreferrer">Another website</a>
<a href="about.html">Our own website</a>
<img src="https://www.theodinproject.com/mstile-310x310.png" alt="The odin project logo" height="310" width="310">
</body>
</html>