-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.04 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My test page</title>
<link href="styles/style.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet" />
</head>
<body>
<h1>Main Page</h1>
<h2>image</h2>
<img src="images/testimage.png" alt="My test image" />
<h3>paragraph</h3>
<p class="editor-note">My cat is <strong>very</strong> grumpy</p>
<p>My cat is <strong>very grumpy.</p></strong>
<h2>list</h2>
<ul>
<li>First menu item</li>
<li>Second menu item</li>
<li>Third menu item</li>
<li>etc.</li>
</ul>
<ol>
<li>First menu item</li>
<li>Second menu item</li>
<li>Third menu item</li>
<li>etc.</li>
</ol>
<h2>links</h2>
<a href="https://www.mozilla.org/zh-CN/about/manifesto/">Mozilla Manifesto</a>
<button>switch users </button>
<script src="scripts/main.js" defer></script>
</body>
</html>