-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (29 loc) · 905 Bytes
/
Copy pathindex.html
File metadata and controls
40 lines (29 loc) · 905 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link href="styles/style.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" />
<title>My test page</title>
</head>
<body>
<!--heading levels-->
<h1>Mozilla is cool</h1>
<img src="images/firefox-icon.png" alt="My test image" />
<p>At Mozilla, we're a global community of:</p>
<ul>
<li>technologists</li>
<li>thinkers</li>
<li>builders</li>
</ul>
<p>working together…</p>
<p> Red the manifest
<a href="https://www.mozilla.org/en-US/about/manifesto/">
Mozilla Manifesto
</a>
</p>
<button>Change user</button>
<script src="scripts/main.js"></script>
</body>
</html>