Posts

Showing posts from January 21, 2018

HTML Editors for "PC/MAC"

Image
HTML Editors HTML Editors 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 Text Edit(Mac) . We believe using a simple text editor is a good way to learn HTML. Follow the four(4) steps below to create your first web page with Notepad or TextEdit. Step 1 : Open Notepad (PC) Windows 8 or later : Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad . Windows 7 or earlier : Open Start>Programs>Accessories>Notepad Step 1 : Open TextEdit (Mac) Open Finder>Applications>TextEdit Also change some preferences to get the application to save files correctly. In Preferences>Format> choose Plain Text . Then under "Open and Save" , check the box that says ignore rich text com

A Basic Introduction to HTML5

Image
An Introduction to HTML5, HTML tags, elements and page structures HTML5 Tutorial With HTML you can create your own Web site. HTML is easy to learn. HTML Introduction What is HTML? HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language. HTML describes the structure of Web pages using markup. HTML elements are the building blocks of HTML pages. HTML elements are represented by tags. HTML tags label pieces of content such as heading , paragraph , table , and so on. Browsers do not display the HTML tags directly, but use them to render the content of the page. A Simple HTML Document Example &colon; <!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 <!DO