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). We believe in that using a simple text editor is a good way to learn HTML. Follow the steps below to create your first web page with Notepad. A simple text editor is what you need to learn HTML Learn HTML with Notepad(PC) Click on the Start Menu and search for notepad once you find it double click on it to open Write some code < !DOCTYPE html > < html > < head > < title > Page Title < /title > < /head > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Save the file To save an HTML code just go to the top right corner and click files then click save. A pop up menu would appear then you make sure you set the file type to all files and save with the .html extension (e.g file.html ) and then click on the sa...
What is HTML?? HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. Sample HTML Code < !DOCTYPE html > < html > < head > < title > Page Title < /title > < /head > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Sample Explained The <!DOCTYPE html> declaration specifies that the file is an HTML file and it should be treated as such by the browser The <html> element is the root element of an HTML page... It must be defined The <head> element contains all the meta information about the site... It is like the setting o...