-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (38 loc) · 969 Bytes
/
index.html
File metadata and controls
51 lines (38 loc) · 969 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
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans">
<title>My test page</title>
<link href="style/style.css" rel="stylesheet" />
</head>
<!-- 4 heading levels: -->
<h1>My test website</h1>
<body>
<img src="img/icon.png" alt="test file image" />
<p class = "editor mode">
My name is <strong>yuchen Liu</strong>
</p>
<p>This is a single paragraph</p>
<p>At here we test the unorder list and order list</p>
<ol>
<li>technology</li>
<li>study</li>
<li>girl</li>
</ol>
<ul>
<li>technology</li>
<li>study</li>
<li>girl</li>
</ul>
<p>working together</p>
<!-- link test -->
<a href="https://www.mozilla.org/en-US/about/manifesto/">
Mozilla Manifesto
</a>
<button id="changeUser">Change user</button>
<script src = "scripts/main.js"></script>
</body>
</html>