-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.21 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>My test page</title>
<link href="styles/style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<h1>My main title</h1>
<img src="images\dog.jpg" alt="My test image" />
<h2>My top level heading</h2>
<h3>My subheading</h3>
<h4>My sub-subheading</h4>
<ol>
<li>technologists</li>
<li>thinkers</li>
<li>builders</li>
</ol>
<p>I really enjoy <strong>playing the drums</strong>. One of my favourite drummers is Neal Peart, who plays in the
band <a href="https://en.wikipedia.org/wiki/Rush_%28band%29" title="Rush Wikipedia article">Rush</a>. My
favourite Rush album is currently <a href="http://www.deezer.com/album/942295">Moving Pictures</a>.</p><img
src="http://www.cygnus-x1.net/links/rush/images/albums/sectors/sector2-movingpictures-cover-s.jpg">
<button>Change user</button>
<script src="scripts/main.js"></script>
</body>
</html>