Skip to content

Instantly share code, notes, and snippets.

@erikroyall
Created April 15, 2017 12:36
Show Gist options
  • Save erikroyall/29de5cc119d0acfb0955b4dce4bb9453 to your computer and use it in GitHub Desktop.
Save erikroyall/29de5cc119d0acfb0955b4dce4bb9453 to your computer and use it in GitHub Desktop.
The fuck is this shit
<html>
<head>HTML Headings</head>
<title>headings Demo</title>
<body>
<br/>
HTML has 6 headings from h1 to h6 vary in size<br/>
<h1>Dept of cse</h1>
<h2>Dept of cse</h2>
<h3>Dept of cse</h3>
<h4>Dept of cse</h4>
<h5>Dept of cse</h5>
<h6>Dept of cse</h6>
</body>
</html>
<!--frames Example-->
<html>
<title>index.html</title>
<frameset rows = "10%,*%" >
<frame src ="head.html"/>
<frame src ="index1.html" />
</frameset>
</html>
<html>
<title>index1.html</title>
<frameset rows = "35%,45%,*%" cols = "40%,*%" >
<frame src ="headings.html"/>
<frame src ="list.html" />
<frame src ="table.html"/>
<frame src ="table1.html"/>
<frame src ="image1.html"/>
</frameset>
</html>
<html>
<head>
<title>Heading</title>
</head>
<style type ="text/css">
body {background-color:cyan; color:green;text-align:center;border-top-width:"medium";borderbottom-
width:"thick"}
</style>
<h1>HTML Main Page</h1>
<body>
HTML expansion is Hyper Text Markup Language
</body>
</html>
<html>
<!--Example of ordered lists-->
<head>Lists</head>
<title> list.html</title>
<h1>*** Ordered List ***</h1>
<body>
<hr/>
<ol>orderlist
<li>A</li>
<ol>Sublist
<li>tea</li>
<li>coffee</li>
</ol>
<li>B</li>
<ol>Sublist
<li>Mathematics</Li>
<li>Physics</li>
</ol>
</ol>
</body>
</html>
<html>
<!--Example of unordered list-->
<head>Lists</head>
<title> list.html</title>
<h1>*** Unordered Lists ***</h1>
<body>
<ul>unorderlist
<li>A</li>
<ul>sublist
<li>tea</li>
<li>coffee</li>
</ul>
<li>B</li>
<ul>Sublist
<li>Maaza</li>
<li>Pepsi</li>
</ul>
</body>
</html>
<html>
<!--Example of table-->
<title>table.html</title>
<body>
<caption>TABLE</caption>
<table border="border"/>
<tr>
<th>Name of the Student</th>
<th>Maths</th>
<th>Phys</th>
</tr>
<tr>
<td>Rao k</td>
<td>10</td>
<td>20</td>
</tr>
<tr>
<td>Mohan G</td>
<td>60</td>
<td>90</td>
</tr>
</table>
</body>
</html>
<html>
<!--Example of menu-->
<head>menu display</head>
<title>menu</title>
<body>
<select Brch="Branch Names">
<option> CSE</option>
<option> CIVIL</option>
<option> MECHANICAL</option>
<option> IT</option>
<option> ECE</option>
<option> EEE</option>
<option>AUTOMOBILE</option>
</select>
</body>
</html>
<html>
<!--Example of image linking-->
<title>Image</title>
<style type ="text/css">
body {background-color:pink; color:green;text-align:center;border-top-width:"medium";borderbottom-
width:"thick"}
</style>
<h1>HTML Image Page</h1>
<body>
<img src = "tt.png" width=”50” height=”50” alt=”Picture Not Found”/>
</body>
</html>
<html>
<!example of linking html files>
<head>Lists</head>
<title> list.html</title>
<h1>*** Types of Lists ***</h1>
<body>
List are two types Ordered and UnOrdered.<br/>
<a href = "listO.html"> Link for Order List</a><br/>
<a href = "listUO.html"> Link for Un Order List</a>
</body>
</html>
<html>
<body>
<center>
<h1>STUDENT REGISTRATION FORM</h1>
</center>
<form>
Name:<input type="text"/><br />
Father's Name:<input type="text"><br />
D.O.B:<input type="text"><br />
<label>Gender:</label>
<label><input type="radio" value="male" name="checklist" />male</label>
<label><input type="radio" value="female" name="checklist" />female</label><br />
Address:<input type="textarea"/><br />
email id:<input type="text" /><br />
<label>examination details:</label><br />
<table border="border">
<tr>
<th>examination passed</th>
<td>board/university</td>
<td>% of marks</td>
</tr>
<tr>
<td>SSC/10th std</td>
<td><input type="text"></td>
<td><input type="text"></td>
</tr>
<tr>
<td>INTER or DIPLOMA</td>
<td><input type="text"></td>
<td><input type="text"></td>
</tr>
<tr>
<td>ENGG 1st year</td>
<td><input type="text"></td>
<td><input type="text"></td>
</tr>
<tr>
<td>ENGG 2nd year</td>
<td><input type="text"></td>
<td><input type="text"></td>
</tr>
<tr>
<td>ENGG 3rd year</td>
<td><input type="text"></td>
<td><input type="text"></td>
</tr>
<tr>
<td>ENGG 4th year</td>
<td><input type="text"></td>
<td><input type="text"></td>
</tr></table>
Languages known:<br/>
<label><input type="checkbox" name="checklist" value="C" />C</label>
<label><input type="checkbox" name="checklist" value="C++" />C++</label>
<label><input type="checkbox" name="checklist" value="java" />java</label>
<label><input type="checkbox" name="checklist" value=".net" />.net</label>
<label><input type="checkbox" name="checklist" value="others" />others</label>
<br ><br />
place:<input type="text"/><br />
date:<input type="text"/><br />
<input type="submit" value="submit"/>
<input type="reset"/>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment