-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML
170 lines (154 loc) · 5.35 KB
/
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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rivision Time</title>
</head>
<body>
<h2 style="color: aqua;">heading tags</h2>
<ul>
<li> <h1>Heading 1</h1> </li>
<li> <h2>Heading 2</h2> </li>
<li> <h3>Heading 3</h3> </li>
<li> <h4>Heading 4</h4> </li>
<li> <h5>Heading 5</h5> </li>
<li> <h6>Heading 6</h6> </li>
</ul>
<div>
<h2>container</h2>
<div>this is div tags</div>
<span>this is span tags</span>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum magni labore, ducimus fugiat consectetur soluta sapiente sed nostrum aspernatur quas quo quos exercitationem. Eius deserunt pariatur ratione odio qui tempore.</p>
<pre>hello world</pre>
<code style="color: rgb(180, 48, 67);">
print("Hello, World!")
</code>
</div>
<div>
<h2 style="color: purple;">Text formatting</h2>
<b>I'M bold text</b><br>
<strong>I am important tags</strong><br>
<i>I am italic text</i><br>
<em>Emphasized text</em><br>
<sub>Subscript</sub><br>
<sup>superscript</sup>
</div>
<div>
<h2 style="color: blueviolet;">Lists</h2>
<ol>
<li>your data</li>
<li>your data</li>
</ol>
<ul>
<li>your data</li>
<li>your data</li>
</ul>
</div>
<div>
<h2 style="color: aqua;">Links </h2>
<a href="https://www.codewithharry.com/">visit code with harry</a>
</div>
<div>
<h2 style="color: aquamarine;">FORMS</h2>
<form action="/revision.html" method="post">
<textarea cols="20" rows="5" name="comments" >comments</textarea><br>
<label><input type="checkbox" name="terms" value="tendc">Accepts terms</label><br>
<input type="submit" value="submit"/>
</form>
</div>
<div>
<h2 style="color: aquamarine;">Form Elements</h2>
<h3>Text Input</h3>
<input type="text" name="username" placeholder="Entername">
<h3>Password Input</h3>
<input type="password" name="password" placeholder="Enter password">
<h3>checkbox</h3>
<input type="checkbox" name="agree" value="yes">I agree
<h3>Radio butten </h3>
<input type="radio" name="gender" value="male">male <br>
<input type="radio" name="gender" value="female">female
<h3>Button</h3>
<button type="button">Click Me</button>
<h3>Submit button</h3>
<input type="submit" value="Submit">
<h3>Select(Dropdown) list</h3>
<select name="country">
<option value="USA">United state</option>
<option value="INDIA">bharat</option>
</select>
<h3>Textarea</h3>
<textarea name="comments" cols="20" rows="3">Enter comments here</textarea>
<h3>File input</h3>
<input type="file" name="fileupload">
<h3>Range input</h3>
<input type="range" name="volume" min="0" max="100">
<h3>Email input</h3>
<input type="email" name="email" placeholder="Enter Email">
<h3>Search input</h3>
<input type="search" name="quary" placeholder="search">
<h3>URL input</h3>
<input type="url" name="website" placeholder="Enter URL">
<h3>Date input</h3>
<input type="date" name="birthdate" >
</div>
<div>
<h2>Character & Symbols</h2>
<h3>copright Symbol</h3>
©
<h3>Less Than</h3>
<
<h3>Greater than</h3>
>
<h3>Ampersand</h3>
&
<h3>Dollar</h3>
$
<h3>Random text</h3>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut, sunt eos. Cupiditate itaque similique eos necessitatibus inventore eum omnis iste sit illo tempora laborum quasi id cum nam blanditiis reprehenderit nulla, amet facere autem labore eius vitae quibusdam. Non officia, accusamus, expedita eaque debitis autem obcaecati modi error inventore cupiditate consectetur minus. Rem accusantium ea provident, cumque nulla ducimus saepe odit inventore eius facere ratione consequuntur quaerat, eum sed nostrum laborum sit! Itaque eos dolores ex soluta magnam facere consectetur ducimus neque, adipisci expedita cum reiciendis iste voluptates nihil dolor et ullam doloribus accusamus, non ipsam quam eligendi! Facilis, inventore.
</div>
<div>
<h2 style="color: bisque;">Sementic Elements</h2>
<section>This is a section </section>
<article>Enter your data here</article>
<aside>Your data</aside>
</div>
<div>
<h2>Meta tags</h2>
<meta name="description" content="this is a description of the page">
<meta name="keywords" content="HTML, CSS, JAVA SCRIPT">
<meta name="description" content="auther name">
</div>
<div>
<h2>CSS Integration</h2>
<style>
body{
background-color: rgb(190, 177, 179);
}
</style>
<link rel="stylesheet" type="text/css" href="style.css">
</div>
<div>
<h2>Accessibility</h2>
<img src="image.jpeg" alt="Description of image"><br>
<label for="name"> name</label>
<input type="text" id="name" name="name"></input>
</div>
<div>
<h2>Responsive Design</h2>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@media(max-width: 600px){
body{ font-size : 18px;}
}
</style>
</div>
<div>
<h2>Java script Integration</h2>
<script>
alert("hello world");
</script>
<script src="script.jss"></script>
</div>
</body>
</html>