Browsing Category "HTML"

Browsing "Older Posts"

Hyper Text Markup Language, commonly referred to as HTML, is the standard markup language used to create web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets (like<html>). HTML tags most commonly come in pairs like <h1> and </h1>, although some tags represent empty elements and so are unpaired, for example <img>. The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags). Web browsers can read HTML files and compose them into visible or audible web pages. Browsers do not display the HTML tags and scripts, but use them to interpret the content of the page. HTML describes the structure of a website semantically along with cues for presentation, making it a markup language, rather than a programming languageHTML elements form the building blocks of all websites. HTML allows images and objects to be embedded and can be used to create interactive forms. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. It can embed scripts written in languages such as JavaScript which affect the behavior of HTML web pages. Web browsers can also refer to Cascading Style Sheets (CSS) to define the look and layout of text and other material. The World Wide Web Consortium(W3C), maintainer of both the HTML and the CSS standards, encourages the use of CSS over explicit presentational HTML.

HTML VIDEO TUTORIAL LESSON 1

HTML COMPLETE VIDEO TUTORIAL

By Muhammad Meer → Saturday, April 4, 2015

Hyper Text Markup Language, commonly referred to as HTML, is the standard markup language used to create web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets (like<html>). HTML tags most commonly come in pairs like <h1> and </h1>, although some tags represent empty elements and so are unpaired, for example <img>. The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags). Web browsers can read HTML files and compose them into visible or audible web pages. Browsers do not display the HTML tags and scripts, but use them to interpret the content of the page. HTML describes the structure of a website semantically along with cues for presentation, making it a markup language, rather than a programming languageHTML elements form the building blocks of all websites. HTML allows images and objects to be embedded and can be used to create interactive forms. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. It can embed scripts written in languages such as JavaScript which affect the behavior of HTML web pages. Web browsers can also refer to Cascading Style Sheets (CSS) to define the look and layout of text and other material. The World Wide Web Consortium(W3C), maintainer of both the HTML and the CSS standards, encourages the use of CSS over explicit presentational HTML.

IF PDF FILE DOES NOT SEEN BELOW SO, PLEASE RELOAD AGAIN AND AGAIN OTHERWISE YOU CAN DOWNLOAD BY GIVEN BELOW BUTTON...




TO DOWNLOAD PDF FORMAT COMPLETE BOOK CLICK BELOW BUTTON

HTML COMPLETE BOOK

By Muhammad Meer →

a first thing that your reader notes is the the presentation of your blog.it gives an everlasting impression on your readers if your blog is well customized.to minimize the webpage load time and to beautify your blog homepages,you must show a summury of blogger posts instead of whole paragraphes.
by default,if your templates supports this option,then its ok.but in blogger custom templates,you have to do it yourself.lets do it.

add a read more tag to each post in blogger:

this is really simple job.just have to follow basic procedure.
1-go t0 blogger>template>edit html
2-check mark on expand template
3-find this code ]]bskin
4-paste this code after the above code.
<style>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
span.fullpost {display:inline;}
<b:else/>
span.fullpost {display:none;}
</b:if>
</style>

5-find this piece of code.
<data:post.body/>
and directly below this,paste this.
 
<!--READ-MORE-STARTS-->
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<a expr:href='data:post.url'>
<div style='text-align: right;'>Read More -&gt;&gt;</div></a>
</b:if>
<!--READ-MORE-STOPS�>
6-now save template.



Enhanced by Zemanta

show just summury of blog post at homepages

By Muhammad Meer → Thursday, March 14, 2013