-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest4.html
More file actions
47 lines (39 loc) · 1.51 KB
/
Test4.html
File metadata and controls
47 lines (39 loc) · 1.51 KB
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
<html>
<head lang="en-US">
<title>Test Title</title>
</head>
<body style="background-color:powderblue; color:grey; font-family:verdana; text-align:center">
<h1>Test Head</h1>
<p>Test Paragraph</p>
<div>Hello World!</div>
<a href="https://www.w3schools.com">This is a link</a>
<t>to where I learnt HTML from</t>
<br> <br> <t>Favourite actor ------></t>
<button><a href="file:///C:/Users/Swarali%20Joshi/Desktop/HTML/Test3.html">Click me</a></button>
<br> <hr>
<h2>List of colleges</h2>
<ul>
<li>IIIT, Hyderabad</li>
<li>MNIT, Allahabad</li>
<li>NIT, Warangal</li>
</ul>
<h2>Food I like to eat</h2>
<ol>
<li title="Best">WaterMelon</li>
<li title="Yummy">Rest of the Fruits</li>
<li title="Obviously">Milk</li>
<li title="Mooooooo">Rest of the Milk Products</li>
<li title="Delicious">Dry fruits</li>
<li title="Gorgeous">Ice cream</li>
</ol>
<hr><hr><br>
<button><h2 style="color:green; font-size:10px">Green</h2></button>
<button><h2 style="color:red; font-size:15px">Red</h2></button>
<button><h2 style="color:blue; font-size:20px">Blue</h2></button>
<button><h2 style="color:pink; font-size:25px">Pink</h2></button>
<button><h2 style="color:yellow; font-size:30px">Yellow</h2></button>
<button><h2 style="color:purple; font-size:35px">Purple</h2></button>
<button><h2 style="color:orange; font-size:40px">Orange</h2></button>
<button><h2 style="color:black; font-size:45px">Black</h2></button>
</body>
</html>