Skip to main content

Posts

Showing posts with the label html

Make text bigger in HTML

You might have seen lots of blog with varying font size which look to attractive and eye catching so this brings me to write a post for others to learn how to do it.You need to use  the tag <font>  </font>   Put your text inside these tag so that your syntx becomes <font> YOUR TEXT </font>  To make the text bigger use size = '' in font tag for e.g.  <font size = "2 " >  YOUR TEXT </font>  OutPut will be like Your Text with size 2 Your Text with size 3   Your Text with size 4   Your Text with size 5 Your Text with size 6  Use whichever suits you best

Html tutorial: Image

Image is a graphical representation which is often used in web world to Increase the usability and attractiveness of website.In other words, it is or a kind of photographs. So question is how to include them in your webpage? well, thats very easy. image is included by img tag. Its syntax is <img src=""> Note: you need to specify the source by hyperlink asmentioned in my previous tutorial on html hyperlink tutorial For example, <img src="http://www.google.com/logos/bardsley.gif"> Result will be like, You may want to change the dimenstions of image by including height and width besides img tag For example, <img src="http://www.google.com/logos/bardsley.gif" width="450px" height="200px"> Result will be like, Here, px denotes pixel. You can also use % for percent but that may not work in all browsers or explorer. Thats why i suggest to work in pixel only.

Html Tutorial on Hyperlink

Exclusive Html Tutorial on Hyperlink on special demand of my blog regular visitor. Simple Hyperlink Code: <a href="http://www.yahoo.com">Yahoo<a> Output: Yahoo Explaination: <a> is known as anchor tag and used to inter link different web pages or topics on same webpage. Giving Title To Hyperlink Code: <a href="http://www.yahoo.com" title="Tahoo MailBox">Yahoo<a> Output: Yahoo Explaination: title in <a> tag is used to give text which gonna appear when cursor is placed on link. Open in New Tab Code: <a href="http://www.yahoo.com" title="Tahoo MailBox" target="_blank">Yahoo<a> Output: Yahoo Explaination: target=_blank in <a> tag is used to tell browser to open hyperlink in new tab Open In Same Tab Code: <a href="http://www.yahoo.com" title="Tahoo MailBox" target="_self" >Yahoo<a> Output: Yahoo ...

How to add moving text to Blog or website

In this tutorial i will tell you How to add Moving text or Scrolling text or Marquee text in the Blog. This is moving text Moving Right to Left Code For Simple Moving Text : <marquee>This is moving text Moving Right to Left </marquee> But Simple Moving Text Looks really ugly. To make it attractive,we will add background colour to it by bgcolor="hexadecimal code" . This is moving text With Background Colour Code For Moving Text With Background Colour : <marquee bgcolor="#33cc99">This is moving text with Background Colour </marquee> You will notice that text is not clearly readable. So,we gonna change the colour of the text. This Is Coloured Scrolling Text With background colour. Code For Scrolling Text With Coloured Text & Background. : <marquee bgcolor="#33cc99" style="color:white;">This Is Coloured Scrolling Text With Background Colour </marquee> You can even control the ...