-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
224 lines (144 loc) · 5.41 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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">
This gives the browser instructions on how to control the page's dimensions and scalin
<link rel="stylesheet" href="styles.css">
_blank The response is displayed in a new window or tab
The <button> element defines a clickable button:
Example
<button type="button" onclick="alert('Hello World!')">Click Me!</button
<hr> is use to make line between two paragraph or something
-->
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>
My FIrst Website
</title>
</head>
<body style="background-color:cadetblue;">
<h1 style="font-size: 100px;">This is the first Heading </h1>
<h2>This is the HTML image </h2>
<h3 title="I'm the winner"> The title Attributes </h3>
<hr>----------------------------------------------------------->
<!-- create a line in between -->
<p title=About W3Schools>
You cannot omit quotes around an attribute value
if the value contains spaces.
</p>
<img src="w3schools.jpg" width="200px" height="200">
<!--<img src=" img_girl.jpg" width="250px" height="500px"/>-->
<p><b>and this is the first paragraph</b></p>
<a href="https://www.w3schools.com">This is the link for w3schools Website</a>
<p style="text-align:left;">this is hidden pargraph <br> This is the another paragram </p>
<!--<br> create new line-->
<p style="background-color:chartreuse">This is Kaustubh Arun Puri from Fofsandi </p>
<p style="font-family:cursive;"> This the tutorial of HTML and ow i am learning this tuturial </p>
<pre style="color:#fff;">
My Bonnie lies over the ocean.
My Bonnie lies over the sea.
My Bonnie lies over the ocean.
Oh, bring back my Bonnie to me.
</pre>
<strong> D Y Patil college of engineering ,Pune</strong>
<br>
<i> D Y Patil college of engineering ,Pune </i>
<br>
<em> D Y Patil college of engineering ,Pune </em>
<br>
<small> D Y Patil college of engineering ,Pune</small>
<p>Do not forgot to buy <mark> Milk </mark>Today </p>
<p> D Y Patil college of engineering <del>Pimpri</del>,Pune</p>
<p> D Y Patil college of engineering<ins>Akurdi</ins>,Pune</p>
<p> D Y Patil college of <sub> Engineering </sub>,Pune</p>
<p> D Y Patil college of <sup>Engineeriing </sup> ,Pune</p>
<P>This is ths blockquote attributes </P>
<blockquote>
For 50 years, WWF has been protecting the future of nature.
The world's leading conservation organization,
WWF works in 100 countries and is supported by
1.2 million members in the United States and
close to 5 million globally.
</blockquote>
<!--The HTML <q> tag defines a short quotation.-->
<P> This is the <q>Quatation </q></P>
<address>
<!-- This Attributes is -->
Written by John Doe.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
<bdo dir="rtl">This line will be written from right to left</bdo> <!-- This attributes shows reverse word-->
<h1 style="background-color: tomato;">Tomato</h1>
<h1 style="background-color: orange;">Orange </h1>
<h1 style="background-color: DodgerBlue;">DodgerBlue</h1>
<h1 style="background-color: MediumSeaGreen;">MediumSeaGreen</h1>
<h1 style="background-color: Gray;">Gray </h1>
<h1 style="background-color: SlateBlue ;">SlateBlue </h1>
<h1 style="background-color: Violet;">Violet </h1>
<h1 style="border:2px solid tomato ;">Border</h1>
<!-- Absolute URLs-->
<a href="https://www.w3schools.com/" target="_blank">Visit Our Website</a>
<!--The CSS padding property defines a padding (space) between the text and the border.-->
<!--We haev send mail by using -->
<br>
<a href="mailto:prajwalkandekar1234562gmail.com">Semd Email</a>
<br>
<h>Button click </h>
<p>We use button to go on website </p>
<button onclick="document.location='default.asp'">HTML Tutorial </button>
<h2 id="C4">chapter 4 </h2>
<a href="#C4">Jump to chapter 4</a>
<table style="width : px" border="10px">
<tr>
<th> Firstname </th>
<th>Middle Name </th>
<th>Last Name </th>
</tr>
<tr style="width:100px;">
<td>saurabh</td>
<td>Arun</td>
<td>Puri</td>
</tr>
</table>
<meta name="author" content="John Doe">
<table>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td>A</td>
<td>Description of A</td>
</tr>
<tr>
<td>B</td>
<td>Description of B</td>
</tr>
</table>
<h2>HTML FORMs</h2>
<form action="/action_page.php">
<label for="fname">First Name </label><br>
<input type="text" id="fname" name="fname" value="saurabh"><br>
<label for="lname">Last Name</label><br>
<input type="text" id="lname" name="lname" value="puri"><br><br>
<input type="submit" value="Submit">
</form>
<video width="500" controls>
<source src = "20200406_225047.mp4" type="video/mp4">
</video>
<p>
video coutersy of
<a href="https://www.bigbuckbunny.org/" target="_blank"> as </a>
</p>
<iframe width="420px" height="345 px"
src="https://youtu.be/oEFEGcsjk1A">
</iframe>
<script>
function drag(ev)
{
ev.prevent
}
</script>
</body>
</html>