-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (45 loc) · 2.08 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
<!doctype html> <!-- dir="rtl"> <lang="en" -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body bgcolor="Soft Vanilla">
<style></style>
<h1>This is First Heading</h1>
<p>This content is included in paragraph tag</p>
<p>This br <br>tag is used to <br>change the line <br>of a content</br></p>
<hr><!-- This make the line in web page -->
<center>Center the Line in a Page</center>
<p>It did not break the text Like:-"This is Non-Breaking Line"</p> <!--( ) is used for non breaking line-->
<p><i>The (i) tag is used to change the font to italic</i></p>
<p><u>This (u) tag is used to underline any sentence or line</u></p>
<p align="left">This is left aligned paragraph</p>
<p align="center">This is center aligned paragraph</p>
<p align="right">This is right aligned paragraph</p>
<p title="Hello Html!">Titled heading example</p>
<select name="mode" id="mode">
<option value="no mode">Select Options</option>
<option value="Russian">Russian</option>
<option value="Korean">Korean</option>
<option value="Pakistani">Pakistani</option>
</select>
<p style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color: #4E4187;">This is a paragraph that contain FONT - Style & Colour</p>
<p>This is a <tt>monospaced</tt> Tag</p>
<p>This is <sup>superscript</sup> Tag</p>
<p>This is <sub>subscript</sub> Tag</p>
<p>I want to drink <del>Milk</del><ins>Daaru</ins></p>
<p>This is <big>big</big></p>
<p>This is <small>small</small></p>
<div id="menu" align="middle">
<a href="/index.htm">Home</a><br>
<a href="/about/index.htm">About</a>
</div>
<div id="content" align="left" bgcolor="white">
<h2>Content Article</h2>
<p>Content goes here</p>
</div>
<p>This is <span style="color:green">Green Span</span> Space <span style="color:red">Red Span</span></p>
</body>
</html>