Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions abbrivations.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>ABbrivation or acronym tag </title>
</head>
<body>
<p><abbr title="Professor">Prof</abbr>Stephen hawking is a therotical physicist and cosmologist.</p>
<p><acronym title="National Aeronautics and space administration">NASA</acronym> do some crazy space stuff.</p>
</body>
</html>
14 changes: 14 additions & 0 deletions blockquote.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Blockquote and q tag</title>
</head>
<body>
<p>The blockquote elements is used for longer quotes that take up an entire paragraph. </p>
<blockquote >
<p>Did you ever stop to think, and forget to start again?</p>
</blockquote>

<p>As A. A. Milne said, <q>Some people talk to animals. Not many listen though. That's the problem.</q></p>
</body>
</html>
10 changes: 10 additions & 0 deletions boldtag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>bold tag</title>
</head>
<body>
<p>This is how we make a word appear <b>bold.</b>
<p>Inside a product description you might see some <b>key features</b> in bold.</p>
</body>
</html>
48 changes: 48 additions & 0 deletions citaiontag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html>
<head>
<title>ciatations tag</title>
</head>
<body>
<p>the citation element can be used to indicate where the citation is form.</p>
<!-- -->
----------------------------------------
<p><cite>A brief History of time </cite>by Stephen Hawking has sold over ten million copies worldwide.</p>
----------------------------------------
<h3>follwing is an example of defination list</h3>
<dl>
<dt>HTML</dt>
<dd>it is a markup language used to give a proper structure to a web page.</dd>
</dl>
---------------------------------------
<h3>Following is an ex. of order list</h3>
<ol>Available colors
<li>orange</li>
<li>blue</li>
<li>red</li>
</ol>
----------------------------------------
<p>
<h3>Following is an ex. of unorder list</h3>
<ul>Some animals name
<li>cat</li>
<li>dog</li>
<li>snake</li>
</ul>
</p>
---------------------------------------
<p><h3>Nested list</h3></p>
<ul>
<li>Mousses</li>

<ul>
<li>Croissant</li>
<li>Mille-feuille</li>
<li>Palmier</li>
<li>Profiterole</li>
</ul>
<li>Tarts</li>
</li>
</ul>
</body>
</html>
19 changes: 19 additions & 0 deletions class-attribute.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>class-attribute</title>
</head>
<body>
<p class="important">For a one-year period from
November 2010, the Marugame Genichiro-Inokuma
Museum of Contemporary Art (MIMOCA) will host a
cycle of four Hiroshi Sugimoto exhibitions.</p>
<p>Each will showcase works by the artist
thematically contextualized under the headings
"Science," "Architecture," "History" and
"Religion" so as to present a comprehensive
panorama of the artist's oeuvre.</p>
<p class="important admittance">Hours: 10:00 – 18:00
(No admittance after 17:30)</p>
</body>
</html>
11 changes: 11 additions & 0 deletions emphsistag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Emphasis tag</title>
</head>
<body>
<p>emphasis tag is work as same as italic tag </p>

<p> <em>i am writing in emphasis tag </em></p>
</body>
</html>
58 changes: 58 additions & 0 deletions form-project.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<title>Form Example</title>
</head>
<body>
<!--This code is writen by Jay Fursule -->
<h3>Sample of Form devloped by Jay Fursule</h3>
<p>
<form action="http://www.example.com/index.php">
<fieldset>
<legend>Your Details:</legend>

<label>Name:</label>

<input type="text" name="text">
<br/><br/>
<label>Email:</label>
<input type="email" name="email">
</fieldset>
</p>
<fieldset>
<legend>Your Review:</legend>

<p>How did you hear about us?
<select>
<option>google</option>
<option>Facebook</option>
<option>instagram</option>
</select>
<br/><br/>

Would you visit again?<br/>
<input type="radio" name="radio" value="yes"/>Yes

<input type="radio" name="radio"
value="no"/>No

<input type="radio" name="radio"
value="Maybe">May be
<br/>
<!--This code is writen by Jay Fursule -->
<br/>
Comments:
<p><textarea name ="comments"cols="40" rows="3"></textarea>
</p>
<input type="checkbox" name="checkbox" value="updates" checked="checked"/> Sign me up for email updates<br/>
<br/>
<input type="submit" name="submit" value="Submit Review">

</p>


</fieldset>
</form>
</body>
</html>
<!--This code is writen by Jay Fursule -->
128 changes: 128 additions & 0 deletions formtag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
</head>
<body>
<h3>Form, Fieldset, legend tag </h3>
<!--This code is writen by Jay Fursule -->
<form action="http://www.example.com/login.php">
<tr><p> Username
<input type="text" name="username" size="15" maxlength="30"/>
</p>
</tr>
<p> Password
<input type="password" name="password" minlength="8"/>
</p>

<hr/>
<p>What Do YOu Think of this gig?</p>


<textarea name="comments" cols="20" rows="4">enter your comments

</textarea>
<br/>
<hr/>
<p>Radio Button</p>
<hr/>
<p>please select your fav gener:
<br/>
<input type="radio" name="genre" value="rock"/>Rock

<input type="radio" name="genre" value="pop"/>pop

<input type="radio" name="genre" value="Jazz"/>Jazz

</p>
<hr/>
<p>Checkbox</p>
<p>
please select your fav music services :

<input type="Checkbox" name="services" value="itunes" checked="checked"/>iTunes

<input type="Checkbox" name="services" value="lastfm"/>Last.fm

<input type="Checkbox" name="services" value="Spotify">Spotify

</p>
<hr/>
<!--This code is writen by Jay Fursule -->
<p>What device do you listen to music on ?</p>
<br/>
<select name="devices">
<option value="ipod">iPod</option>
<option value="Radio">Radio</option>
<option value ="mobile">Mobile</option>

</select>
<br/>
<hr/>
<p>Do you play any of the following instruments?
(You can select more than one option by holding
down control on a PC or command key on a Mac
while selecting different options.)</p>
<select name="instruments" size="3"
multiple="multiple">
<option value="guitar" selected="selected">
Guitar</option>
<option value="drums">Drums</option>
<option value="keyboard"
selected="selected">Keyboard</option>
<option value="bass">Bass</option>
</select>

<hr/>

<p>Upload your song in MP3 format:</p>
<input type="file" name="user-song" /><br /><br/>
<input type="submit" value="Upload" />

<hr/>

<p>Subscribe to our email list:</p>
<input type="text" name="email" />
<input type="submit" name="subscribe"
value="Subscribe" />

<hr/>


<p>Subscribe to our email list:</p>
<input type="text" name="email" />
<input type="image" src="images/tropicalbird.jpg"
width="100" height="25" />


</form>
<hr/>
<!-- fieldset and legend tag is use for grouping form elements-->
<fieldset>
<legend>contact detatils</legend>
<label>Email:<br />
<input type="email" name="email"></label>
<br/>

<label>Mobile:<br/>
<input type="text" name="mobile"></label>
<br/>

<label>Telephone:<br/></label>
<input type="text" name="telephone"><br/>
</fieldset>
<p><b> fieldset and legend tag is use for grouping form elements</b></p>

<p><h3>Date input type: date</h3>
<form action="http://www.example.com/bookings/"method="post">

<label for="username">Departure date:</label>

<input type="date" name="depart" />

<input type="submit" value="Submit" />
</form>
</p>
</body>
</html>
<!--This code is writen by Jay Fursule -->
14 changes: 14 additions & 0 deletions headtag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCKTYPE>
<HTML>
<HEAD>
<TITLE>HEAD TAG</TITLE>
</HEAD>
<BODY>
<H1>THIS IS H1 TAG</H1>
<H2>THIS IS H2 TAG</H2>
<H3>THIS IS H3 TAG</H3>
<H4>THIS IS H4 TAG</H4>
<H5>THIS IS H5 TAG</H5>
<H6>THIS IS H6 TAG</H6>
</BODY>
</HTML>
11 changes: 11 additions & 0 deletions horizontaltag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>horizontal tag</title>
</head>
<body>
<p>Venus is the only planet that rotates clockwise.</p>
<hr/>
<p>Jupitor is bigger than all the other planets combined.</p>
</body>
</html>
23 changes: 23 additions & 0 deletions iframetag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="youtube video, email, copyright symbol">
<title>Iframe</title>
</head>
<body>
<p>
<h2>Welcome to MY YouTube channel</h2>
&#60; &lt; &amp; &#38;
</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/I4J4ovSQ5nM" frameborder="1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

<p>
Here we use iframe tag
<br>
Email: <a href="mailto:jaesh.f1@gmail.com">jayesh.f1@gmail.com</a>

</p>
&copy; jayfursule

</body>
</html>
Binary file added images/tropicalbird.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading