-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (95 loc) · 2.9 KB
/
Copy pathindex.html
File metadata and controls
121 lines (95 loc) · 2.9 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
<!DOCTYPE html>
<html>
<head>
<title>My Coding Website</title>
</head>
<body>
<!-- Header Tags -->
<h1>Programming Language</h1>
<h2>Programming Language</h2>
<h3>Programming Language</h3>
<h4>Programming Language</h4>
<h6>Programming Language</h6>
<!-- Paragraph Tags -->
<p>
<!-- Hypperlinks -->
<a href="https://github.com/teetangh" target="_blank">Kaustav</a> is a pro developer
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, ipsa quod? Quae temporibus, laborum ullam
omnis sint quaerat cupiditate, iure dicta eius blanditiis sed. Dolore adipisci vero iste labore quas?
</p>
<!-- Embedded Videos -->
<iframe width="300" height="200" src="https://www.youtube.com/embed/FNGoExJlLQY" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<br>
<!-- Image Tag -->
<img src="http://images.unsplash.com/photo-1580414057403-c5f451f30e1c?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1080&fit=max"
alt="" height="200" width="200">
<!-- UNordered Lists -->
<ul>
<li>C++</li>
<li>Java</li>
<li>Python</li>
</ul>
<!-- Ordered Lists -->
<ol>
<li>C++</li>
<li>Java</li>
<li>Python</li>
</ol>
<!-- Forms -->
<form action="/" method="GET">
<div>
<label for="thename">Input name:</label>
<input type='text' name='form_name' id='thename'>
</div>
<div>
<label for="theemail">Input email:</label>
<input type='email' name='form_email' id='theemail'>
</div>
<input type="submit" value="Click to Submit">
</form>
<!-- Table -->
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sahil Saini</td>
<td>sahilsaini1515@gmail.com</td>
<td>20</td>
</tr>
<tr>
<td>Kaustav Ghosh</td>
<td>teetangh@gmail.com</td>
<td>21</td>
</tr>
</tbody>
</table>
<div>
<label for="cars">Choose a car:</label>
<select name="cars" id="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</div>
<div>
<textarea name="message_name" id="message_id" cols="20" rows="10"></textarea>
</div>
<hr>
<p>Gibbersih (IGNORE)</p>
<p>Gibbersih (IGNORE)</p>
<p>Gibbersih (IGNORE)</p>
<p>Gibbersih (IGNORE)</p>
<p>Gibbersih (IGNORE)</p>
</body>
</html>