-
Notifications
You must be signed in to change notification settings - Fork 0
/
textbasics.html
52 lines (39 loc) · 1.71 KB
/
textbasics.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
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Dave Gray">
<meta name="description" content="This page contains all the things I am learning how to create as I learn HTML.">
<title>Learning text basics in html</title>
<link rel="icon" href="html5.png" type="image/x-icon">
<link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<h1> Hello World.</h1>
<hr>
<h2> I am ready to learn HTML.</h2>
<p>This is my first web page</p>
<p> I live in KS and so want to visit a beach</p>
<h3> Places I would like to visit.</h3 >
<p>Let me tell you how:
<br> ...I learn more about web developement.
<br> ...I plan out my schedule.
<br> ...I use resources from <abbr title="Mozilla Developer Network"Mozilla Developer Network>MDN</abbr>.
</p>
<hr>
<h2> I am also plannig a vacation.</h2>
<p>I have been working hard and <em>really need a getaway</em>.</p>
<h3>Places i had like to visit</h3 >
<p>I have good things about Kursela.</p>
<p> I have heard good things about going here.</p>
<address>
Ayodhyaganj Bazaar
<br>Kursela,Katihar
</address>
<h3>Places i wouldn't like to visit</h3 >
<p>A cold one. <strong>No way!</strong></p>
<!---TODO: Add more places--->
<hr>
<<< ©Yash Jaiswal >>>
</body>
</html>