-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
39 lines (39 loc) · 1020 Bytes
/
template.html
File metadata and controls
39 lines (39 loc) · 1020 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Template</title>
<link rel="stylesheet" href="/styles/css/main.css">
<link rel="stylesheet" href="/styles/css/generic.css">
</head>
<body>
<h1>Biggest Title</h1>
<h2>Bigger Title</h2>
<h3>Big Title</h3>
<h4>Lil Title</h4>
<h5>Smaller Title</h5>
<h6>Smallest Title</h6>
<p>Lorem ipsum dolor sit amet <kbd>Ctrl + A</kbd> and then the robot said <code>beep-boop I'm a robot</code></p>
<code>Block of robotisms</code>
<hr>
<details open>
<summary>Read More</summary>
<p>The rain in Spain falls mainly upon the plain.</p>
</details>
<hr>
<blockquote>
"Nobody outpizzas the hut"
<cite>Anonymous</cite>
</blockquote>
<ul>
<li>AAAA</li>
<li>BBBB</li>
</ul>
<ol>
<li>Uno</li>
<li>Dos</li>
<li>Tres</li>
</ol>
</body>
</html>