-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello.html
49 lines (37 loc) · 943 Bytes
/
hello.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Cs50 Web dev lecture 0</title>
</head>
<body>
<p>
<h1><u><b>Headings</b></u></h1>
<h1>This is a largest text !!</h1>
<h2>This a large text !!!</h2>
<h3> This is a medium text !!!</h3>
<h4> This is a Smaller Text !!!</h4>
<h5> This is slightly smaller text !!</h5>
<h6>This is smallest text !!!</h6>
</p>
<!-- Lists -->
<h1> <u> Lists </u> </h1>
<h4>Ordered List</h4>
<ol>
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ol>
<h4>Unordered List</h4>
<ul>
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ul>
<h1>Forms</h1>
<form >
<input type="text" placeholder="Type Your Name Here" name="Name">
<button>Submit</button>
</form>
</body>
</html>