Home Tags HTML

Tag: HTML

HTML Text Formatting

0
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

0
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

0
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

0
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

0
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

0
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

0
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

0
<!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

0
<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

0
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...

Latest Post

Aptitude

Average Set I

Simple Interest set 1