Skip to main content

Posts

Showing posts with the label Full stack web developer

HTML formatting tags

Formatting tags in HTML. There are different types of formatting tags in HTML and these tags are.~ <b> <strong> <i> <em> <mark> <small> <del> <ins> <sub> <sup> HTML formatting tags specify how the text can appear in the browser like the text should appear bold, italic, small, large, etc. Now let’s understand each tag one by one. Firstly we will see a bold and strong tag. let’s understood the bold tag. Anything that appears within the <b>…</b> tag is displayed in bold. The HTML <b> tag defines bold text, without any extra importance. Then we have the strong tag. The HTML strong <strong> tag defines the text with strong importance. The content inside is typically displayed in bold. Then we have the HTML italic and emphasis elements. Anything that appears within <i>….</i> element is displayed in italics. The HTML  <i>the the  element defines the specific part of the ...

Introduction to HTML

HTML Introduction HTML Introduction HTML is the standard markup language for creating webpages. What is HTML? HTML stands for Hyper Text Markup Language. HTML describe the structure of a webpage. HTML consists of series of elements. HTML elements tell the browsers how to diplay the content. HTML element label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. A simple HTML Document Example <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My first heading</h1> <p>My first paragr...

HTML entities

HTML Entities HTML Entities Some characters are reserver in html. If you use the less than (<) or greater than (&gt) signs in your text, the browser might mix them with tags. character entities are used to display reserved characters in html. A character entity looks like this: &entity_name; OR &#entity_number To display a less than sign (<) we must write: &lt; or &#60; Advantages of using an entity name: An entity name is easy to remember. Disadvantages of using an entity name: Browsers may not support all entity names, but the support for entity numbers is good. Some usefull HTML Character Entities Result Description Entity Name Entity Number non-breaking space ...