- How to create a web page? (Html)
First open a notepad and create this text on the notepad.
<html>
<head>
</head>
<body>
</body>
</html>
- How to create title on your web page ?
<html>
<head>
<title>Welcome </title>
</head>
<body>
</body>
</html>
- 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: 
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
6.Now Edit your HTML script by notepad. See following.
Result:
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:
0 comments:
Post a Comment