-
How to Convert Html to PDF
If we want to convert the Html page to PDF then we have to follow the steps which are given below. Using the following steps, we can easily convert: Step 1: Firstly, we have to open the Html file by double-click on the file. The file opens in the default browser of our system. Step 2: Now, we have…
-
How to add Background Image in Html
In HTML, we can easily add the background Image in the Html document which is to be displayed on a web page using the following different two methods: Using the Background attribute If we want to add the background image in the Html document using the Background attribute then we have to follow the steps…
-
How to Link CSS to Html
In HTML, we can easily link the style sheet to the Html document in the following different three methods: Using an Inline Style It is an easiest method for adding the CSS style to our Html document or code. But we cannot reuse this method, so reusability is the disadvantage in this method. If we…
-
How to Comment in Html?
The comments in the Html document are the texts of Html which are not interpreted by the Internet Browsers. If we want to create the single line comment or multiple line comments in the Html document then we have to follow the steps which are given below. Using these steps, we can easily create the…
-
How to Change Background Color in Html
In HTML, we can change the color of the background of a webpage using the following different ways: 1. Using bgcolor attribute If we want to change the color of a background of a web page using bgcolor attribute, we have to follow the steps which are given below. Using these steps, we can easily change…
-
How to Change Text Color in Html
In HTML, we can change the color of any text using the following different ways: 1. Using HTML tag Note: HTML 5 does not support the color attribute of font, so we have to use the inline style attribute and internal CSS options for changing the color of a text. If we want to change…
-
How to Change Font in HTML
In HTML, we can change the font using the following two ways: 1. Using HTML tag If we want to change the font of a text using Html tag which is to be displayed on a web page, we have to follow the steps which are given below. Using these steps, we can easily change…
-
How to Insert Image in HTML
If we want to insert an image in the HTML document to show the image on a web page, we have to follow the steps which are given below. Using these steps, we can easily add or insert an image in the document. Step 1: Firstly, we have to type the Html code in any text editor or…
-
What Does HTML Stand For
HTML is an abbreviation of Hypertext Markup Language. This markup language is used for creating and editing those text, images, and other contents which are to be displayed on a web page. This language is based on the SGML ( Standard Generalised Markup Language). It uses various tags and attributes that helps users to display the text,…
-
HTML Nested Table
The nested table in HTML means creating a table on a webpage inside another table on the same web page. Example: The following example describes how to create a nested table. In this example we create a table, which contains another table in the 2nd cell of first row. Output: