evidenttutorials.com
Home HTML JavaScript jQuery PHP Python Server SQL
Page 1 of 2. Next Last
August 17, 2024

Paragraph <p> </p>

The <p></p> tags use for making new paragraphs. You can also define paragraph's alignment with align attributes. Align attribute has three values such as left, center and right. If you do not write align attribute then by default it remain left.

Read more... 
August 17, 2024

Line Break <br> tag

The <br> tag uses for line break. When you want to write text in new line, without skipping a blank line so you can use <br> tag. It breaks the line and move text to next line.

Read more... 
August 17, 2024

Section headings

In HTML there are six levels of Section heading available from 1 through 6. Text present in heading tags displayed in larger and bolder fonts as compare to normal text on the web browser.

Read more... 
August 17, 2024

HTML Comment

If you want to write some notes in your HTML file which you do not want to show on the webpage but want to include in your HTML file for better understanding your code. So for it you can create comments in HTML. These comments present in your file but, these all will be ignored by the browser.

Read more... 
August 17, 2024

Strikethrough tag <strike></strike>

<strike></strike> tags draw a horizontal line on the text. Example of <strike></strike> tag:

Read more... 
August 17, 2024

Subscript tag <sub></sub>

<sub></sub> tags make text as sub-script (little bit lower than normal text) which comes between <sub></sub>. These tags useful to define mathematical equations.

Read more... 
August 17, 2024

Superscript tag <sup></sup>

<sup></sup> tags make text as super-script (little bit higher than normal text) which comes between <sup></sup>. These tags useful to define mathematical equations.

Read more... 
August 17, 2024

Pre tag <pre></pre>

When you write HTML code you have line break characters, carriage return characters tabs etc. But HTML does not count them and provide output as single line. Sometimes we want that whatever we write in HTML code it should appear exactly same in browser too.

Read more... 
August 17, 2024

Underline tag <u></u>

<u></u> tags use to underline the text you want. So with <u></u> tag you can do the same.

Read more... 
August 17, 2024

Italic tag <i></i>

<i></i> tags display text in italic face style. So if you want to make italic text, you can use <i></i> tags.

Read more... 
Page 1 of 2. Next Last

Latest Posts

You can find latest posts below:

What does clearsessions command do in Django? What does collectstatic command do in Django? How to create a new Django app? How to create a new Django project? How to run a Django project?
About Us Privacy Policy Disclaimer