-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
75 lines (68 loc) · 2.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<body>
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head>
<h1 class="animate__animated animate__bounce">
<style=text-align:center;>Welcome to My Sample Website</style>
</h1>
<p>This is an HTML Page using the following tags</p></h1>
<!-- Fill in lists for <ul>,<li>,<p> and <h1> -->
<ul>
<li> Underordered List </li>
<li> List </li>
<li> Paragraph </li>
<li> Header-1 </li>
</ul>
<!-- div anchor -->
<div id="anchor">
<p>This is a demonstration of the anchor link</p>
</div>
<!-- background-color: yellow padding: 10px; -->
<body style="background-color:yellow;"></body>
<!-- Table -->
<style>
div {
padding: 5px;
border: 1px solid blue;
}
</style>
<table>
<th>Favourite Food</th>
<tr>
<th>Month</th>
<th>Saving</th>
<th>Best Food Item</th>
</tr>
<tr>
<td>January</td>
<td>$150</td>
<td>Steak</td>
</tr>
<tr>
<td>February</td>
<td>$250</td>
<td>Peking Duck</td>
</tr>
</table>
<br>
<!-- Anchored Link; To addin -->
<p>A anchorded link here</p>
<!-- Form -->
<form action="/action_page.php" method="get">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname"><br>
<input type="submit" value="Submit">
</form><br><br>
<!-- style for the form1 and LearnMore files -->
<footer>
<a href="LearnMore.html">Learn More about HTML</a><br>
<a href="Form1.html">Fill in your details</a>
</footer>
</body>
</html>