Showing posts with label Html. Show all posts
Showing posts with label Html. Show all posts
Wednesday, May 22, 2013

How To Use Hyperlink Tag in Html

0 comments
In this Post i will teach you how to create and use hyperlinks to your webpage.A hyperlink or link is a word, group of words, or image that you can click on to jump to another document.An unvisited link is underlined and blue.A visited link is underlined and purple.An active link is underlined and red.You can also set the target using target attribute which specifies where to open the linked document.You can also use the id attribute for creating a bookmark inside the Html Document.

For a Simple Link: <a href="url">Link text</a>

For Target Attribute: <a href="url" target="_blank">Visit Blank</a>

For ID Attribute: <a id="tips">Useful Tips Section</a>


The above tag and attributes are use in the example given below.

<html>
<head>
<title>
How To 99
</title>
</head>
<body>
This Is My First Blog.<br><a href ="http://www.lovetech.in">Full Mobile Phone Specification</a><br>

Target Attribute<br><a href="howto99.blogspot.com" target="_blank">How To 99</a><br>

<a id="http://howto99.blogspot.com/2013/05/how-to-make-momos-both-steamed-and-fried.html">Useful Tips For Making Momos</a></body>
</html>
Copy the above Code and Paste in your Notepad or Notepad++ and saves the code with .html like abc.html or whatever you want and run the code
Read more...
Sunday, May 19, 2013

How To Use Image Tag in Html

0 comments
Here in this post i will teach you that how to use  image tag in html.With the help of this tag you can insert images to your html web page.You can set the height and width of the image with the help of height and width attributes.You can also use the alternate attribute for displaying the text on the image.

  • For Height and Width of the image <img src="url" width="" height="">
  • For Alternate Text of the image <img src="url" alt="Image Text">

Here URL is the address of your image:

You can find the address of your image by right click of mouse and than open the image in your default browser.You can also find the address of the image which is on the server,just right click and than copy the image url and paste it in the image tag.

This tags are work in the body section only i.e. between <body>and</body> tag only.
The above tag and attributes are use in the example given below.

<html>
<head>
<title>
How To 99
</title>
</head>
<body>
<img src="url" alt="Image Text" width="" height="">
</body>
</html>

Copy the above Code and Paste in your Notepad or Notepad++ and saves the code with .html like abc.html or whatever you want and run the code.
Read more...

How To Use Bold,Italic and Underline Tag in Html

0 comments
Here in this post i will teach you that how to use bold,italic and underline tag in html.If you want your text in bold, italic or in underline than use these tags.

  • For Bold Text <b>Your Text </b>
  • For Italic Text <i>Your Text </i>
  • For Underline Text <u>Your Text </u>
These tags are work in the body section only i.e. between <body>and</body> tag only.
The above tags are use in the example given below


<html>
<head>
<title>
How To 99
</title>
</head>
<body>
<b>Bold-How To 99</b>
<i>italic-How To 99</i>
<u>underline-How To 99</u>
</body>
</html>

Copy the above Code and Paste in your Notepad or Notepad++ and saves the code with .html  like abc.html or whatever you want and run the code.

Read more...
Saturday, May 18, 2013

How To Make a Simple Html Web Page

0 comments
Hyper Text Markup Language (HTML) is the main markup language for creating web pages and other information that can be displayed in a web browser.Now you can also make or create these webpages with the help of this simple code given below.

Simple Html Webpage Code :
<! DOCTYPE html>
<html>
<head>
<title>
How To 99
</title>
</head>
<body>
Anything that you write in body section will display on the browser window
</body>
</html>
In the above code,
  • The DOCTYPE declaration defines the document type.
  • The text between <html> and </html> describes the web page.
  • The text between <title> and </title> is the title of your page.
  • The text between <body> and </body> will display on your web-browser window.
Read more...
 
How To 99 © 2013 How to 99 &

How to Tutorial in 99 Categories