-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLearnHTML.html
More file actions
137 lines (116 loc) · 3.12 KB
/
LearnHTML.html
File metadata and controls
137 lines (116 loc) · 3.12 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html>
<head>
<title>Learn HTML</title>
<meta charset="UTF-8">
<meta name="description" content="HTML Tutorials">
<meta name="keywords" content="HTML,CSS">
<meta name="author" content="Rama">
<!--<meta http-equiv="refresh" content="5" />-->
<!--<style>
p {
color:red;
font-weight:bold;
}
</style>-->
<script>
</script>
<link rel="stylesheet" href="site.css" />
<link href="MVCTutorial.css" rel="stylesheet" />
<noscript>Your browser does't support JavaScript</noscript>
</head>
<body>
<h1>This is Heading</h1>
<h2>This is Heading</h2>
<h3>This is Heading</h3>
<h4>This is Heading</h4>
<h5>This is Heading</h5>
<h6>This is Heading</h6>
<div>
<p>This is sample division</p>
<h3>This is h3</h3>
<a href="https://www.google.com" target="_blank">Visit Google</a>
<br />
<span>This is normal Text</span>
<br />
<b>This is Bold Text</b>
<button type="button">Click Here</button>
</div>
<div>
<img src="Content/flower.jpg" />
</div>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<fieldset>
<legend>Christopher Nolan</legend>
<div>
He is hollywood famous Director.......
</div>
</fieldset>
<fieldset>
<legend>Christopher Nolan</legend>
<div>
He is hollywood famous Director.......
</div>
</fieldset>
<fieldset>
<legend>Christopher Nolan</legend>
<div>
He is hollywood famous Director.......
</div>
</fieldset>
<p>I love <span style="color:red"> India</span></p>
<table style="border:1px solid">
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
</tr>
<tr>
<td>Rama</td>
<td>rama@gmail.com</td>
<td>987878888</td>
</tr>
<tr>
<td>Siva</td>
<td>siva@gmail.com</td>
<td>7667558888</td>
</tr>
<tr>
<td>Krishna</td>
<td>krishna@gmail.com</td>
<td>8887878888</td>
</tr>
</table>
<input type="text"></input> <br />
<textarea rows="10" cols="100"></textarea> <br />
<input type="password" /> <br />
<input type="radio" name="gender"/> Male
<input type="radio" name="gender" /> Female
<br />
<input type="radio" name="color" /> Blue
<input type="radio" name="color" /> Red
<input type="radio" name="color" /> Yellow
<br />
<input type="checkbox" value="cfry" /> chicken fry
<input type="checkbox" value="cchik" /> chilli chicken
<input type="checkbox" value="veg" /> Veg
<br />
<select>
<option>Blue</option>
<option selected>Red</option>
<option>Yello</option>
</select>
<br />
<input type="hidden" name="hdnname" value="rama" />
<div style="padding-top:100px;"></div>
</body>
</html>