-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (21 loc) · 849 Bytes
/
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
<!-- Create a HTML file (e.g first_page.html) that specifies a page that contains a
heading and two paragraphs of text. As the text in the heading and paragraph
you can use any texts you like. -->
<!-- Copy the code Below -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exercise 1</title>
</head>
<body>
<header>
<h1>This is the heading</h1>
</header>
<main>
<p>This is the first paragraph. Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloribus quae dolores exercitationem molestias sit. Corporis officia veritatis saepe officiis iste.</p>
<p>Here is the second paragraph. Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium, dignissimos.</p>
</main>
</body>
</html>