-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>First Web Page</title>
</head>
<body>
<div>
<h1>First Web Page</h1>
<p>Kindly do exactly what you see here as it would affect you score <br>
Whether it is your first webpage in life or not, use the heading aboe it won't bite..</p>
</div>
<div>
<h2>H2 Heading</h2>
<p>As a best practice, your webpage should have just one <br><br>
element</p>
</div>
<div>
<h3>h3 Heading</h3>
<p>The test is too simple to fail. <br>
It is simply a test of how much you have been following the course. <br><br>
Thanks.. Wait.. <br> You will havee to upload to github.. Yea.</p>
</div>
<div>
<h4>H4 heading</h4>
<p>Use the file structure that will be shown below</p>
</div>
<div>
<pre>
:::first_webpage:::
|
--------:::index.html:::
|
--------:::style.css:::
|
--------:::script.js:::
</pre>
</div>
</body>
</html>