HTML Introduction Virtual Asistant November 21, 2017What is HTML? HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language HTML describes the str... Read more
HTML Editors Virtual Asistant November 21, 2017Write HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors. However, for learning HTML we... Read more
HTML Basic Virtual Asistant November 21, 2017HTML Basic Examples Don't worry if these examples use tags you have not learned. You will learn about them in the next chapters. HTML D... Read more
HTML Elements Virtual Asistant November 21, 2017HTML Elements An HTML element usually consists of a start tag and end tag, with the content inserted in between: < tagname > Conten... Read more
HTML Attributes Virtual Asistant November 21, 2017Attributes provide additional information about HTML elements. HTML Attributes All HTML elements can have attributes Attributes provide addi... Read more
HTML Headings Virtual Asistant November 21, 2017Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6 HTML Headings Headings are defined with the <h1> to <h6> tags. <h... Read more
HTML Paragraphs Virtual Asistant November 21, 2017HTML Paragraphs The HTML <p> element defines a paragraph : Example < p > This is a paragraph. < /p > < p > This is ... Read more
HTML Styles Virtual Asistant November 21, 2017Example I am Red I am Blue I am Big The HTML Style Attribute Setting the style of an HTML element, can be done with the style attribute . Th... Read more
HTML Text Formatting Virtual Asistant November 21, 2017Text Formatting This text is bold This text is italic This is subscript and superscript HTML Formatting Elements In the previous chapter, ... Read more
HTML Quotation Virtual Asistant November 21, 2017HTML Quotation and Citation Elements Quotation Here is a quote from WWF's website: For 50 years, WWF has been protecting the future of n... Read more
HTML Comments Virtual Asistant November 21, 2017Comment tags are used to insert comments in the HTML source code. HTML Comment Tags You can add comments to your HTML source by using the fo... Read more
HTML Colors Virtual Asistant November 21, 2017HTML colors are specified using predefined color names, or RGB, HEX, HSL, RGBA, HSLA values. Color Names In HTML, a color can be specified b... Read more
HTML CSS Virtual Asistant November 21, 2017CSS = Styles and Colors Manipulate Text Colors, Boxes Styling HTML with CSS CSS stands for C ascading S tyle S heets. CSS describes how H... Read more