skip to main | skip to sidebar

Wednesday, November 27, 2013

Web Design Tutorial Part (5)

0 comments
Some HTML Attributes:

Tag                                            Attributes

  • <font>          size="6" face="sutonymj" color="blue"
  • <h1> to <h5> <p>  align="center" align="left" align="right"
  • <body>           bgcolor="yellow" 
  • <table>      height="150px" width="250px" border="6px"

Example:

          <html>
    <head>
           <title>www.techinfo24u.blogspot.com</title>
</head>
<body bgcolor="red"> <font size="6" face="Times New Roman" color="red"> Here will post description. </font>
</body>
</html>

Friday, July 12, 2013

Web Design Tutorial Part(4)

0 comments
HTML list use for sequentially set web content on website.   Bullets tag is needed for designing dynamic web site.

Bullet tag starts with <ul> tag. Every individual data start with <li> tag.

<ul>
<li>Google</li>
<li>Facebook</li>

</ul>

Iframe tag is use for show separate location on web page. Iframe tag start with iframe word.

<iframe src="Web Address" width="250" height="300"></iframe>

Text background color tag is
<p style="background-color:red">Color will depends on color name and code</p>


Tuesday, June 25, 2013

Web Design Part(3)

0 comments
For web design need sometimes , when visitor click on the link then it will open on new tab.
Type this code on body.
<p><a href="URL/" target="_blank">Keyword</a></p>

Color changing is very important for web development. Anyone can easily change website background color  and clickable link color using this code.

<head>
<style type="text/css">
body {background-color:red}
p {color:yellow}
</style>
</head>


On page SEO is needed for increasing page rank. For increase page rank use meta tag technique. This tag keyword and content will hidden.

<meta name= "Websites Main keywords" content=technology, tech tips>


Website auto refreshing tag use for sports news updating websites. Developers can select this code refreshing timer , after how many times websites page will reload.

<meta http-equiv="refresh" content="10">

Sunday, April 14, 2013

Web Design For Beginner (Part 2)

0 comments
Image tag is very important tag for web design . Image tag start with "img" . Use this tag in body.

    <img src="Website Url" width="111" height="140">

For line break use
<br> Content </br>

Link tag use external and internal link.
<a href="Website Url">Keyword</a>

For design need hidden text need comment tag.
<!--Here is Comment -->

<b> That is Bold Tag</b>

<sub> Sub-scripted Tag</Sub>
<sup> Superscript Tag</Sup>

Tuesday, January 22, 2013

Web Design for Beginner (Part 1)

0 comments
HTML Introduction : HTML means Hyper Text Markup Language.
        Open Notepad and type this code :-
<!DOCTYPE html>
 <html>
<title> Title tag</title>
<body>
<h1> It is Heading Tag</h1>
<p> Paragraph</p>
</body>
</html>

click on save as and save format is  new documents.html.