-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html1
44 lines (31 loc) · 1.06 KB
/
index.html1
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
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Blessing">
<meta name="description" content="This page contains all the things I am learning how to createas I learn HTML">
<title>My First Web Page</title>
<link rel="icon" href="html5.png" type="image/x-icon">
<link rel="stlyesheet" href="main.css" type="text/css">
</head>
<body>
<h1>Hello World!</h1>
<hr>
<h2>I'm Ready to Learn HTML</h2>
<p>Tis is my first web page.</p>
<h3>My Daily Schedule</h3>
<p>Let me tell you how I..</p>
<br> ...I learn more about web dev.
<br>...I plan out my schedule.
<br>...I use resources from MDN
<hr>
<h2>I Am Also Planning a Vacstion</h2>
<p>I've been working hard and <em>really need a getaway</em>.</p>
<h3>Place I,d Like to visit </h3>
<p>I've heard good things about the Caribeans</p>
<h3>Place I Want to Avoid</h3>
<p>Anywhere cold. <strong>No way!</strong></p>
<hr>
<< © Blessing Muchafa
</body>
</html>