- Computer Using
- Windows
- Browser
- How-To
- Microsoft Office
- MS Word
- MS Excel
- MS Outlook
- MS PowerPoint
- Graphic / Design
- Photoshop
- Illustrator
- Server & Network
- Computer Networking
- Internet
- Windows Server
- Web Development
- HTML
- Javascript
- CSS
- ASP.NET
- PHP
- Animation
- Flash
- Silverlight
- Database
- Database System
- SQL Server
- T-SQL
- XML
- XML
Your First HTML Website
HTML is a programming language that using a lot of markups to create a webpage. In this lesson you will start your first webpage that create HTML. I suppose you have Windows setup.
Open Notepad Program
Start » Run » type word "notepad" » click OK buttonWrite HTML Code
1. <html> 2. <head> 3. <title>My First Personal HTML Page</title> 4. </head> 5. <body> 6. <h1>Personal Website</h1> 7. Welcome to my personal website. 8. </body> 9. </html>
When you type HTML code above please don't put number such as: 1. 2. and so on, I use them to explain only.
Explain
Line 1 (<html>): Starting point of creating webpage with HTML language.
Line 9 (</html>): Ending point of creating webpage with HTML language.
Line 2 to 4 (<head>...</head>): Head of webpage
Line 3 (<title>...</title>): Title of webpage, it show on the top left of browser.
Line 5 to 8 (<body>...</body>): This is a block that you can write anything to show in webpage.

