-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (38 loc) · 1.63 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
48
49
<!doctype html>
<html lang="en-US">
<head>
<link href="styles/style.css" rel="stylesheet" /> <!--<link> tag is typically placed within the <head>, Void Element-->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet" /> <!--font-family: "Open Sans", Arial, sans-serif; -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My test page</title>
</head>
<body>
<!-- 4 heading levels: -->
<h1>Welcome to 天才杭's first webpage</h1>
<h2>Here I want to show some jellycat little-series toys (:</h2>
<!-- <h3>My subheading</h3>
<h4>My sub-subheading</h4> -->
<img src="images/pig.jpg" alt="Pig: See this adorable little piggy" /> <!-- source/alternative-->
<!-- <img src="images/pup.jpg" alt="Pig: See this adorable little pup" />
<img src="images/chick.jpg" alt="Pig: See this adorable little chick" />
<img src="images/penguin.jpg" alt="Pig: See this adorable little penguin" /> -->
<p>At Mozilla, we're a global community of</p>
<ul> <!-- unordered list -->
<li>technologists</li> <!-- list-->
<li>thinkers</li>
<li>builders</li>
</ul>
<p>working together</p>
<p> Read more about Mozilla at
<a href="https://www.mozilla.org/en-US/about/manifesto/"> <!--<a>: ound in body content. Used to create hyperlinks to other web pages or resources.-->
Mozilla Manifesto
</a>
</p>
<button>Change user</button>
<script src="scripts/main.js"></script>
<!-- the browser reads code in the order it appears in the file. -->
</body>
</html>