-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (24 loc) · 687 Bytes
/
index.html
File metadata and controls
34 lines (24 loc) · 687 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>first page</title>
<link href="styles/first.css" rel="stylesheet">
</head>
<body>
<header>My first page</header>
<main>
<img src="images/monkey.JPG" alt="monkey">
<h1>My first sample page</h1>
<p>This should contain a few contents</p>
<p>This could also be a few lines of sentences </p>
</main>
<footer>
<p>
check out my <a href="pageTwo.html" target="blank"> Next page </a>
or my <a href="pageThree.html" target="blank">last page</a>
</p>
</footer>
</body>
</html>