HTML remains for Hypertext Markup Language, and it is the most generally utilized dialect to compose Web Pages.
Hypertext alludes to the path in which Web pages (HTML records) are connected together. Along these lines, the connection accessible on a website page is called Hypertext.
As its name recommends, HTML is a Markup Language which implies you utilize HTML to just "increase" a content archive with labels that advise a Web program...
Sunday, 15 October 2017
October 15, 2017
Unknown
2 comments
Any archive begins with a heading. You can utilize distinctive sizes for your headings. HTML additionally has six levels of headings, which utilize the components <h1>, <h2>, <h3>, <h4>, <h5>, and <h6>. While showing any heading, program includes one line earlier and one line after that heading.
Case
<!DOCTYPE html>
<html>
<head>
<title>Heading Example</title>
...
October 15, 2017
Unknown
No comments
A HTML component is characterized by a beginning tag. On the off chance that the component contains other substance, it closes with an end tag, where the component name is gone before by a forward slice as appeared underneath with few labels −
Start TagContentEnd Tag
<p>This is paragraph content.</p>
<h1>This is heading content.</h1>
<div>This is division content.</div>
<br />
So here <p>....</p>...
October 15, 2017
Unknown
No comments
We have seen few HTML labels and their utilization like heading labels <h1>, <h2>, passage tag <p> and different labels. We utilized them so far in their least complex shape, yet the vast majority of the HTML labels can likewise have characteristics, which are additional bits of data.
An ascribe is utilized to characterize the attributes of a HTML component and is put inside the component's opening tag. All properties are comprised...
October 15, 2017
Unknown
No comments
In the event that you utilize a word processor, you should be comfortable with the capacity to make content strong, stressed, or underlined; these are only three of the ten choices accessible to show how content can show up in HTML and XHTML.
Strong Text
Anything that shows up inside <b>...</b> component, is shown in strong as appeared beneath −
Illustration
<!DOCTYPE html>
<html>
<head>
<title>Bold...
Subscribe to:
Posts (Atom)