Posts

Showing posts from July, 2016

HTML Editors

Image
Write HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors. However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac). We believe using a simple text editor is a good way to learn HTML. Follow the four steps below to create your first web page with Notepad or TextEdit. Step 1: Open Notepad (PC) Open Notepad in Windows 8 or later: Open the  Start Screen  (the window symbol at the bottom left on your screen). Type  Notepad . Open Notepad in Windows 7 or earlier: Click  Start  (bottom left on your screen). Click  All Programs . Click  Accessories . Click  Notepad . Step 1: Open TextEdit (Mac) Open TextEdit . Please be sure that the text editor is set to  plain text.  Go to:  Preferences > New Document > select plain text. Also make sure both  "Display html file as html code"  and  "Display RTF file as RTF code"  options are checked under  "

01-HTML Introduction

Image
What is HTML? HTML is a  markup  language for  describing  web documents (web pages). HTML stands for  H yper  T ext  M arkup  L anguage A markup language is a set of  markup tags HTML documents are described by  HTML tags Each HTML tag  describes  different document content A Small HTML Document Example < !DOCTYPE  html > < html > < head > < title > Page Title < /title > < /head > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Example Explained The  <!DOCTYPE html>  declaration defines this document to be HTML5 The text between  <html>  and  </html>  describes an HTML document The text between  <head>  and  </head>  provides information about the document The text between  <title>  and  </title>  provides a title for the document The text between  <body>  and  </body>  de