Search This Blog

Showing posts with label web design. Show all posts
Showing posts with label web design. Show all posts

Tuesday, January 29, 2013

Html

 
html.jpg
  1. How to create a web page? (Html)
First open a notepad and create this text on the notepad.
<html>
<head>
</head>
<body>
</body>
</html>


  1. How to create title on your web page ?
<html>
<head>
<title>Welcome </title>
</head>
<body>
</body>
</html>
  1. Now insert image in your web page, so create this script.
 <img src="test.jpg" height="200" width="300" />
<html>
<head>
<title> </title>
</head>
<body>
<img src="test.jpg" height="200" width="300" />
</body>
</html>
Example: test.jpg
   4. How to create Head line, now create this script.
<h1> type your text </h1>

type your text


Example:
<html>
<head>

</head>
<body>
<h1> type your text </h1>
</body>
</html>

5.How to create paragraph script in your web page. ( <p> </p> )  This is paragraph script. Create this script following below.
  <p> type your test</p>
Example: 
type your test
html.jpg

6.Now Edit your HTML script by notepad. See following. 
notepad.jpg
Result: 
notepad.jpg
7.How to make like hipper link. Which is easy to type now type your notepad this script is <a href=" type your text"> any text</a>
Following now:
<a href="http://hello-fnf.com"> click here </a>
Result: