Skip to main content

Posts

Showing posts with the label blogger 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.

Embeded Picasa Web Album Slideshow in blogger,Working

1.Login to Picasa Web Album Note:-Every Image you upload on blogger is uploaded to picasa by default You will see albums if you have uploaded images more than 1 blogger blogs 2.Click on Picas album picture 3.Click On Slideshow 4.Note down the Web Address of the Album from address bar (where you type the address of the website) 5.Paste the following code any where in the blog. <iframe src= 'http://picasaweb.google.com/puneetmcmahon/BollwoodWallpapersAndPicsCollection#slideshow/5331788516701924898' scrolling="no" frameborder="0" style= "height:340px;width:400px;" > </iframe> Change code in red according to your needs. http://picasaweb.google.com/puneetmcmahon/BollwoodWallpapersAndPicsCollection#slideshow/5331788516701924898 is web address of album replace it with your album address, adjust height and width according to your blogger template 6.If want to put it in sidebar a)login to blogger b)Click on layout c)Click on add gadget/element d...

How to Join U Comment I Follow Movement?

How to make your blogs comment do follow? U Comment I Follow means all the comments are do follow in other words all the comments will be spidered by search engines. Unfortunately the comments field in Blogger and wordpress are made no follow by default.To make it do follow , just do the following steps:- Login to blogger account Click on Layout Click on Edit Html Click on expand widjet Find <a expr:href='data:comment.author.Url' rel='no follow'> Delete rel='no follow' from the above code. To know Your Visitors know that your blog comments are do follow .Then,add the U Comment I Follow Badge.. To know whether blogger claim is fake or write that his comment box is do follow. simply right click on any Comment heading(Normally name of website or profile of persons who commented). see the properties Note:- By joining the movement of U Comment I Follow, you might become victim of spam. To prevent your site from spam either do comment mo...

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 ...