learn html basics with notepad

Written by Sony on 25 March 2009 in , , | Add Comments

html is a basic web desing language here i going to show you how to make simple web page in
notepad

first step
open notepad

goto start >> all programs >> accessories >> notepad

now your notepad is open
in web pages having so many types of code so we have to mention bout which code is write
for, this thing will be eiser to write comment on every new code
comment start with // , when web page is run on browser it’s can’t consider that comment

// html language start with this <html> tag in html language every tag tag have to open
& close so here i am given close tag also

<html> // here is open tag
</html> // here is close

now html have internal two parts one is “head” tag & second one is “body” tag in head tag
have to declare web page title also in upcoming article i will show how we can use body tag
for links
body tag is main part of our html web pages here we can write what i have to show in browser
so first head tag

<html>
 <head>
 <title>first webpage</title> // here is title which can seen in title of browser
 </head>
</html>

now start our body tag

<html>
 <head>
 <title>first webpage</title> // here is title which can seen in title of browser
 </head>

 <body>
 this is my first web page in html language !!
 </body>
</html>

now save this notepad file goto file >> save

name it first “webpage.html” & open it in your favourite web browser

You might also like

how to change opacity of image when mouseover with css
Basic of Rails routing -rails routes basic hack
Rich Text Editor in Rails Application
21exclusive tips for Twitter
Image upload issue in wordpressmu with nginx

Leave a Reply

Wordpressapi is developer code book.
wordpressapi on Facebook
© 2010 Wordpressapi. All Rights Reserved. Reproduction without explicit permission is prohibited.