Tag: HTML
HTML Text Formatting
HTML Text Formatting
We can use some special tags to format the text as we want.
Some Formatting elements tags are:
<b> - Bold text
Example:
<b>This text is...
Advanced Web Designing
Advanced Web Designing
The Hypertext Mark-up Language (HTML) is an evolving language, with different versions supporting different features. HTML5 is currently used because it supports...
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...