hi, hear i am going to start session 3
in the last session you have studied about basic things of what programming languages are generally used,
let us see detail,
first i am going detail with html language , how it works , how browser convert some of language to html
now , what is html?
html is hypertext markup language.(way of which web language are written generally design done in html & css)
basically structure of tags.
eg:
Above example show that an doctype this basically need in some browser no need to declare.
also use some common tags html, title, head, body.
title is name for page if user type webpage address in site then in title bar of web browser showing title.
eg: welcome to pvpatil class, google, blogger, name of company ..
in body tag above use p for para tag.
now save this example & go browser & check you can view result.
browser shows : hello hi how are you.(sentence case not matter).
now let us sea what are tags are used (& how it works)
please share if anything is missing in above session. send your comment & like so that we can improve more
in the last session you have studied about basic things of what programming languages are generally used,
let us see detail,
first i am going detail with html language , how it works , how browser convert some of language to html
now , what is html?
html is hypertext markup language.(way of which web language are written generally design done in html & css)
basically structure of tags.
eg:
<!DOCTYPE html>
<html>
<head>
<title>ABCD</title>
</head>
<body>
<p> Hello Hi How Are You.</p>
</body>
</html>
<html>
<head>
<title>ABCD</title>
</head>
<body>
<p> Hello Hi How Are You.</p>
</body>
</html>
Above example show that an doctype this basically need in some browser no need to declare.
also use some common tags html, title, head, body.
title is name for page if user type webpage address in site then in title bar of web browser showing title.
eg: welcome to pvpatil class, google, blogger, name of company ..
in body tag above use p for para tag.
now save this example & go browser & check you can view result.
browser shows : hello hi how are you.(sentence case not matter).
now let us sea what are tags are used (& how it works)
<!DOCTYPE...> :- this defines the document type and HTML version.
<html> :- This encloses the complete HTML document and mainly comprises of document header.
which is represented by
<head> :- ---header tag which is use to define all link to script, css, title etc.
<body> :- document body .
<h1> to <h6> use to represent heading tags.
<div> :- use to represent division content
<p> :- use to represent paragraph
<span> :- use to represent specific within div or para.
<br/> use for line breaks
<hr/> use for horizontal row
<b> <i> <center> :- use for bold, italic, center.
<pre> use for preserve formatting.
<a> is anchor tag
<audio> set specific audio
<base> use for data for linking page
<area> section of image
<bdo> define direction of text
<bgsound> for background sound when showing webpage
<button> use to create button
<input> : use for text, submit, button, this are different purpose
<col> for colonize data
<blink> : for blink data
<blockquote> : specific text highlighting.
<table> <tr><td> for design table structure.
<embed> for embedding content, i-frame for synchronize webpage , video.
<form> for get , post submitting value.
<img> for image add.
<label> create label
<li> <ul> for list may be order or unordered.
<marquee> for moving text or add over webpage.
<meta> for sharing some information , also useful in searching console,
<script> for writing script
<link> for linking logo, style.
<select><option> for add drop down box
<strong> nearly similar to <b> tag.
<style> for adding style>
<textarea> for adding row & column wise textbox
<var> indicate variable parameter.
<html> :- This encloses the complete HTML document and mainly comprises of document header.
which is represented by
<head> :- ---header tag which is use to define all link to script, css, title etc.
<body> :- document body .
<h1> to <h6> use to represent heading tags.
<div> :- use to represent division content
<p> :- use to represent paragraph
<span> :- use to represent specific within div or para.
<br/> use for line breaks
<hr/> use for horizontal row
<b> <i> <center> :- use for bold, italic, center.
<pre> use for preserve formatting.
<a> is anchor tag
<audio> set specific audio
<base> use for data for linking page
<area> section of image
<bdo> define direction of text
<bgsound> for background sound when showing webpage
<button> use to create button
<input> : use for text, submit, button, this are different purpose
<col> for colonize data
<blink> : for blink data
<blockquote> : specific text highlighting.
<table> <tr><td> for design table structure.
<embed> for embedding content, i-frame for synchronize webpage , video.
<form> for get , post submitting value.
<img> for image add.
<label> create label
<li> <ul> for list may be order or unordered.
<marquee> for moving text or add over webpage.
<meta> for sharing some information , also useful in searching console,
<script> for writing script
<link> for linking logo, style.
<select><option> for add drop down box
<strong> nearly similar to <b> tag.
<style> for adding style>
<textarea> for adding row & column wise textbox
<var> indicate variable parameter.
please share if anything is missing in above session. send your comment & like so that we can improve more