Introduction
Write a HTML script to print the numbers 1 – 10, each number being a different color
How to remove the space between inline block elements?
How to create some links to various search engines (google, yahoo, Bing, lycos, etc)
How to define highlighted/marked text in HTML
How to define an alternate content for users that do not support client-side scripts in HTML
How to define navigation links in HTML
How to define an option in a drop-down list in HTML
How to represent the progress of a task in HTML
How to define style information for a document in HTML
How to define subscripted text in HTML
How to define superscripted text in HTML
How to define a multiline input control text area in HTML
How to underline a text in an HTML document
How to define an ordered list in HTML
How to define an unordered list in html
How to use <pre> tag in html
Write a HTML program to print the squares of the numbers 1 to 10 number
Write a HTML program to print techstudy on the screen with every letter being a different heading size
Write a HTML program to print Each sentence with a different font
Write a HTML program to print techstudy in greeen color
How to define define a table in HTML
How to define a section that is quoted from another source in HTML
How to author an abbreviation or an acronymn
How to use image tag in html
How to embed audio in a HTML document
How to write bold text using HTML tags
How to create a hyperlink in a HTML document
What is the correct way to write address in a HTML document
How to use comment tags in HTML
List of HTML Basic Exercise with Examples
Write a HTML script to print the numbers 1 – 10, each number being a different color
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>www.techstudy.org</title>
</head>
<body>
<font color="green">1</font>
<font color="blue">2</font>
<font color="gray">3</font>
<font color="#008080">4</font>
<font color="#0008B">5</font>
<font color="brown">6</font>
<font color="#dcdcdc">7</font>
<font color="#800000">8</font>
<font color="purple">9</font>
<font color="#688e23">10</font></body>
</html>
Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …
C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …