Welcome to the graphics designing
Welcome to the graphics designing
We will discuss about the basic keys and some special keys of the html in this blog page.
HTML is the standard markup language for creating Web pages.
- HTML stands for Hyper Text Markup Language
- HTML describes the structure of a Web page
- HTML consists of a series of elements
- HTML elements tell the browser how to display the content
- HTML elements are represented by tags
- HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
- Browsers do not display the HTML tags, but use them to render the content of the page.
- The HTML document itself begins with
<html>and ends with</html>.The visible part of the HTML document is between<body>and</body>. HTML Headings
HTML headings are defined with the<h1>to<h6>tags.<h1>defines the most important heading.<h6>defines the least important heading:
We use these codes in notepad of our computer and after completion of code We save our file with extension .html
- (< > ) these are the tags symbols. necessary for the tags.
- <html></html> used for the start and end of the html page.
- <br></br>for next line .
- <head> </head> for defining the header area.
- <title> </title>for the title of the page
- <h1> <h1> Main heading or first heading
- <h2><h2> for sub heading or second heading.
- <h3></h3> for further sub headings.
- <b> for bold.
- <body></body>for selecting body.
- <div></div> to select any specific part from body .
- <p> for pargaph.
- <u></u> for underline.
- <ol></ol> for making order list in the form of 1234 or abcd.
- <ul></ul>for making random / un order list. In the form of bullets square or dots .
- <li></li> for making the list items
- (align center in starting < p >) used for making the specific data align center
- <form></form> tomakea form.
- <table></table> for making the table
- <tr></tr> for table row ) for including table row
- <th></th> for table heading.
- <tableborder></tableborder> for table border style.
- <td></td> for the table data
- <bgcolor="any color"></bgcolor>
- <img></img> for including the image
- <img src="picnamejpg" width="104" height="142">
- <img src="img_girl.jpg" alt="Girl with a jacket">
The alt Attribute
The
alt attribute specifies an alternative text to be used, if an image cannot be displayed.
The value of the
alt attribute can be read by screen readers. This way, someone "listening" to the webpage, e.g. a vision impaired person, can "hear" the element.- <p></p> for making another paragraph.
- <a></a> to link the data or buttons or anything (
- <button></button> for making a button
- <a href=" BUTTON name" button>view </button></a> to open an other page wile pressing linked button.
- <center></center>for making your data into the center without using any difficult thing.
- <dl></dl> for definition list.
- <dt></dt> for definition term.
- <sup></sup> for placing anything in power.
- <sub></sub> for placing anything downward in power.
- <pre></pre> for display as it is .
- <form></form> to make a form.
- <frame set></frame set>
- <frame set col="33%,10R%,*>rtosetthe coloumn of te frame .
- <frame set rows="33%,10R%,*>rtosetthe row of te frame
- .
These are the some basic codes for using the html if you want to learn more about web designing comment below i ll let you know and help you in making your web designing more attractive.
Comments
Post a Comment