Open a Notepad to Learn Web Designing

Started by Sudhakar, Apr 24, 2009, 04:52 AM

Previous topic - Next topic

Sudhakar

On your Windows Machine.
Press Windows + R Key.
On the Run interface, type Notepad.


Start typing your own HTML code.


Step 1 : Open and Close Html tags

Ex : <html>.....</html>

Step 2 : Open and Close Header tags

Ex : <head>.....</head>

Step 3 : Open and Close Title tags on Header.

Ex : <title>.....</title>

Step 4 : Open and Close Body tags

Ex : <body>.....</body>

Altogether,

<html>
<head>
<title>
New Webpage
</title>
</head>
<body>
display some content on my home page goes here
</body>
</html>


Save the Notepad as "home.html".

where,
home - name of the file
.html - extension used to save html files.

Open the home.html file over a web browser like Internet Explorer, Mozilla or Chrome.