HTML Uniform Resource Locators

A URL is another word for a web address. A URL can be composed of words (e.g. help.rerfindia.org), or an Internet Protocol (IP) address (e.g. 192.68.20.50). Most people enter the name when surfing, because names are easier to remember than numbers. URL – Uniform Resource Locator Web browsers request pages from web servers by using… Read More »

HTML Encoding (Character Sets)

To display an HTML page correctly, a web browser must know which character set to use. From ASCII to UTF-8 ASCII was the first character encoding standard. ASCII defined 128 different characters that could be used on the internet: numbers (0-9), English letters (A-Z), and some special characters like ! $ + – ( )… Read More »

Using Emojis in HTML

Emojis are characters from the UTF-8 character set: 😄 😍 💗 What are Emojis? Emojis look like images, or icons, but they are not. They are letters (characters) from the UTF-8 (Unicode) character set. The HTML charset Attribute To display an HTML page correctly, a web browser must know the character set used in the… Read More »

HTML Symbols

Symbols that are not present on your keyboard can also be added by using entities. HTML Symbol Entities HTML entities were described in the previous chapter. Many mathematical, technical, and currency symbols, are not present on a normal keyboard. To add such symbols to an HTML page, you can use the entity name or the… Read More »

HTML Entities

Reserved characters in HTML must be replaced with character entities. HTML Entities Some characters are reserved in HTML. If you use the less than (<) or greater than (>) 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… Read More »

HTML Semantic Element

Semantic elements = elements with a meaning. What are Semantic Elements? A semantic element clearly describes its meaning to both the browser and the developer. Examples of non-semantic elements: <div> and <span> – Tells nothing about its content. Examples of semantic elements: <form>, <table>, and <article> – Clearly defines its content. Semantic Elements in HTML Many web sites contain HTML code like: <div id=”nav”> <div class=”header”> <div… Read More »

Creating Responsive Web Design

Responsive web design is about creating web pages that look good on all devices! A responsive web design will automatically adjust for different screen sizes and viewports. What is Responsive Web Design? Responsive Web Design is about using HTML and CSS to automatically resize, hide, shrink, or enlarge, a website, to make it look good… Read More »

How to apply Layout Elements and Techniques

Websites often display content in multiple columns (like a magazine or a newspaper). HTML Layout Elements HTML has several semantic elements that define the different parts of a web page: <header> – Defines a header for a document or a section <nav> – Defines a set of navigation links <section> – Defines a section in a document <article> –… Read More »

Changing Text Formats In MS PowerPoint

Formatting the Text Open your presentation in PowerPoint. Select the text you want to modify. On the Home tab, in the Font group, you’ll find a lot of buttons and settings that you can use to customize and modify the text. This group contains everything related to the font and its styles. To change the… Read More »