-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.01 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css">
<title>A test page</title>
</head>
<body>
<h1>A test page is published</h1>
<p>This paragraph is beginning with the first sentence. A simple paragraph is
done with this second sentence.</p>
<ul>
<li>apple</li>
<li>orange</li>
<li>strawberry</li>
</ul>
<ol>
<li>January</li>
<li>February</li>
<li>March</li>
<li>April</li>
<li>May</li>
</ol>
<pre>
int
main (int argc, char *argv) {
printf("Hell, World\n");
return 0;
}
<code>
int
main (int argc, char *argv) {
printf("Hell, World\n");
return 0;
}
</code>
<code>
<section> tag
<section> tag
</code>
</pre>
<a href="https://www.mozilla.org/en-US/about/manifesto/">Mozilla Manifesto</a>
<button>Change user</button>
<script src="script/main.js"></script>
</body>
</html>