HTML
How to remove the space between inline block elements?
Introduction There are multiple ways to remove the space between inline – block elements ! Method 1 .apple { .display:inline-block; …
How to create some links to various search engines (google, yahoo, Bing, lycos, etc)
Introduction How to create some links to various search engines (google, yahoo, Bing, lycos, etc) <!DOCTYPE html> <html> <head> <meta …
How to define highlighted/marked text in HTML
Introduction How to define highlighted/marked text in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <mark>TechStudy</mark> The complete …
How to define an alternate content for users that do not support client-side scripts in HTML
Introduction How to define an alternate content for users that do not support client-side scripts in HTML <!DOCTYPE html> <html> …
How to define navigation links in HTML
Introduction How to define navigation links in HTML. <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <nav> <a href=”https://techstudy.org/html/List-of-HTML-Basic-Exercise-with-Examples”>HTML …
How to define an option in a drop-down list in HTML
Introduction How to define an option in a drop-down list in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> …
How to represent the progress of a task in HTML
Introduction How to represent the progress of a task in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> …
How to define style information for a document in HTML
Introduction How to define style information for a document in HTML. <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> <style> h2 …
How to define subscripted text in HTML
Introduction How to define subscripted text in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <p>This text is<sub>subscript</sub> …
How to define superscripted text in HTML
Introduction How to define superscripted text in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <p>This text is<sup> …
How to define a multiline input control text area in HTML
Introduction How to define a multiline input control text area in HTML. <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> …
How to underline a text in an HTML document
Introduction How to underline a text in an HTML document <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <title>How …
How to define an ordered list in HTML
Introduction How to define an ordered list in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <select> <option …
How to define an unordered list in html
Introduction How to define an unordered list in html <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <ul> <li>C …
How to use tag in html
Introduction How to use pre tag in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <pre> class EmployeeClass{ …
Write a HTML program to print the squares of the numbers 1 to 10 number
Square of numbers from 1 to 20. This is a relatively easier problem. The first approach that comes to mind …
Write a HTML program to print techstudy on the screen with every letter being a different heading size
Introduction Write a HTML program to print techstudy on the screen with every letter being a different heading size <!DOCTYPE …
Write a HTML program to print Each sentence with a different font
Introduction Write a HTML program to print Each sentence with a different font <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> …
HTML Script To Print Number 1-10 | Each Being Different Color
Introduction Write a HTML script to print the numbers 1 – 10, each number being a different color <!DOCTYPE html> …
Write a HTML program to print techstudy in greeen color
Introduction Write a HTML script to print techstudy in greeen color <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> …
How to define define a table in HTML
Introduction How to define define a table in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <table border=”1″> …
How to define a section that is quoted from another source in HTML
Introduction How to define a section that is quoted from another source in HTML. <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> …
How to author an abbreviation or an acronymn
Introduction How to author an abbreviation or an acronymn. <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <p><img src=”https://techstudy.org/images/logo.png” …
How to use image tag in html
Introduction How to use image tag in html <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <p><img src=”https://techstudy.org/images/logo.png” alt=”html …
How to embed audio in a HTML document
Introduction How to embed audio in a HTML document. <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <audio controls> …
How to write bold text using HTML tags
Introduction How to write bold text using HTML tags <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org </title> </head> <body> <p>”techstudy” …
How to create a hyperlink in a HTML document
Introduction How to create a hyperlink in a HTML document. <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <p><a …
What is the correct way to write address in a HTML document
Introduction What is the correct way to write address in a HTML document <!DOCTYPE html> <html> <head> <title>www.techstudy.org</title> <meta charset=”utf-8″> …
How to use comment tags in HTML
Introduction How to use comment tags in HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <p>C Programming</p> <!–<p>C++ …
List of HTML Basic Exercise with Examples
The purpose of this HTML exercise is to help you practice using HTML tags to create a basic web page. …