-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.html
50 lines (50 loc) · 1.42 KB
/
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
48
49
50
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Web page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="top">
This is the new division of the <span class='name'>webpage</span>.<br>
An Unordered list:
<ul>
<li>One item</li>
<li>Another item</li>
<li>Yet another item</li>
</ul>
An Ordered list:
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
<table>
<tr>
<th>Name</th>
<th>Curiosity</th>
</tr>
<tr>
<td>bla</td>
<td>bla</td>
</tr>
</table>
</div>
<img src="wallpaper.jpg" alt="An Wallpaper Image" width="50%">
<div id="bottom">
<p>Hello World!! Hello, Hello, Hello.I am the new feature.</p>
</div>
<h1>This is the largest headline</h1>
<h2>This is also a largeer headline</h2>
<h3>This is a slightly smaller headline</h3>
<h4>This is an even samller headline</h4>
<h5>This is the second-smallest headline</h5>
<h6>This is the smallest headline</h6>
<!-- form action attribute is about the location url where the form input data is needed to be sent -->
<form action="index.html" method="post">
<input type="text" placeholder="Full Name" name="Name">
<button>Submit!</button>
</form>
</body>
</html>