Tag: HTML
Lab Course – HTML
Lab Course - HTML
Exercise 8 Set A
1. Create an html page with 7 separate lines in different sizes. State size of each line in...
HTML Layout
Websites/ Web pages may contain multiple columns. HTML layout provides a way to arrange web page in a well structured manner. It gives the...
HTML Lists
HTML lists tag allows developer to list the set of related items. There are two type of lists:
1. Ordered list
An Ordered list starts with...
HTML Styles
HTML Styles
<!DOCTYPE html>
<html>
<head>
<title>HTML styles</title>title>
</head>
<body>
<p>I am normal</p>
<p style="color:red;">I am red in color</p>
<p style="color:green;">I am green in color</p>
<p style="font-size:100px;">I am big in size</p>
</body>
</html>
HTML Background color
<!DOCTYPE html>
<html>
<head>
<title>HTML...
HTML Tables
HTML Tag
<table> element to define a table
<tr> element to define a table row
<td> element to define a table data
<th> element...
HTML Page with 6 Separate Lines in Different Sizes
<!DOCTYPE html>
<html>
<body>
<h1>Line one</h1>
<h2>Line two</h2>
<h3>Line three</h3>
<h4>Line four</h4>
<h5>Line five</h5>
<h6>Line six</h6>
</body>
</html>
Output -
also see
C Programming language
Go Programming language
Linked List
Array
Stack
Queue
Puzzle
Reasoning
Aptitude
Simplification
HTML Page with 7 Separate Lines in Different Colors
<html>
<head><title>Color</title></head>
<body align="center">
<h1>7 separate lines in different colors</h1>
<p style="color:blue">Blue</p>
<p style="color:green">Green</p>
<p...
Structured Tags
An HTML document begins with a DOCTYPE declaration that declares the version of HTML to which the document belongs.
The HTML element tag follows and...
Introduction to HTML
HTML is the standard markup language for Web pages. It can be used to create your own website.
HTML is platform-independent and is used to...