Tech Study

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; …

Read more

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 …

Read more

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 …

Read more

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

Read more

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 …

Read more

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

Read more

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

Read more

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 …

Read more

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

Read more

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

Read more

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

Read more

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 …

Read more

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 …

Read more

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 …

Read more

How to use
 tag in html

Introduction How to use pre tag in HTML &lt;!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>www.techstudy.org</title> </head> <body> <pre> class EmployeeClass{ …

Read more

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 …

Read more

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 …

Read more

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

Read more

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

Read more

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

Read more

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″> …

Read more

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″> …

Read more

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” …

Read more

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 …

Read more

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

Read more

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” …

Read more

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 …

Read more

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″> …

Read more

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++ …

Read more

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

Read more