Showing posts with label web page. Show all posts
Showing posts with label web page. Show all posts

Thursday, May 8, 2014

HTML TAGS

HTML TAGS

<HTML> </HTML>
Describes Start and End of Your Web Page.

<Head>  </Head>
This tag is optional and basically used to provide information to web browsers.

<Title>    </Title>
Your Web page title as displayed in browser
 
<Body> </Body>
 Your Entire Web Content goes inside this tag.It is Basically used for Displaying Content on Your Web page.

<br>
To go to next line

<b>   </b>
The Content inside this tag becomes bold
eg:-<b>This is bold text</b>This is normal text

Anchor Tag(Link Tag)
<a href="Website to direct(eg:http://www.google.com)" Text To apper </a>

eg:-<a href="http://waysto-make-money-online.blogspot.com"Blog Redirection</a>

iif you want to add an image to redirect to some page You can replace text to appear with 

<img src="your image link" </img>

<a href ="http://www.google.com" img src="https://www.google.co.in/images/srpr/logo11w.png"</img> </a>


 
 

Wednesday, May 7, 2014

WEB DESIGNING TOOLS

WEB DESIGNING TOOLS

You Require a Editor like Notepad/Notepad++,(IDE like NetBeans can also be used),Browser to test your web page.


But I personally Suggest using Adobe Dreamweaver(Adobe).which can easily be downloaded from Adobe Website

It Provides Editor(code view) + Visual view at the same time.You can see your pages at the flow.and it has browser launch facility in the menu bar to test your web page in Browser.

It Manages Your Web Page ,Image ,Documents in an organized way  to be used efficiently

It has Code Completion Facility And it can highlight the errors.

If You are not comfortable with coding.You can alter your web page visually and even customize any template to make a great web page.

If You are comfortable with basics and want to make professional web page.
then you require Adobe Photoshop(for Graphics design),

Xampp/Wampp Server to make your computer as web server to test your php page.it has inbuilt facility of phpmyadmin,mysql database etc. 

 


HTML BASICS

HTML BASICS

Every Web page is basically a HTML page with various other technologies embedded in it to make it more dynamic.and attracting.

 HTML STRUCTURE  

HTML is a case-insensitive language so you can use both upper and lower case   letters.

Every HTML page starts with a <HTML> tag and end with </HTML> tag

<HTML>
  
<HEAD>[head tag is optional provides details to the browser]

<TITLE>title of your web page displayed by your browser </TITLE>
</HEAD>

<BODY>

The Content to be displayed in your web page 

</BODY>

 
</HTML> [End of Your Html Document]



HTML PAGE EXTENSIONS

.html/.htm - Extension for basic html document.
.xhtml       -  Html + Xml
.dhtml       -  Dynamic Html

Depending upon other Language used inside your basic html document Extensions can changed like(.php..jsp.asp.net,.js etc)