New Post

Showing posts with label Main Tag Html. Show all posts
Showing posts with label Main Tag Html. Show all posts

Make Horizontal Line

Horizontal Line is used as a divider between paragraphs within an HTML document. The syntax is as follows:

<hr [properti]>

Align = Horizontal Line location. left, right, center, justify
Size = The size of the Horizontal Line
Width = Ajust the width. Pixcel or precent
Color = to dye Horizontal Line
NoShade = to eliminate the shadow effect,




<html>
<head>
<title> practice heading </title>
</head>
<body>
<h1 align="center"> Belajar Tag Properti </h1>
<p align "justify">HTML, which stands for HyperText Markup Language, is the predominant markup language for web pages. HTML is the basic building-blocks of webpages.
</p>
<hr Color="green" width="90%">
<p align="left">HTML is written in the form of HTML elements consisting of tags, enclosed in angle brackets (like <html>), within the web page content. HTML tags normally come in pairs like and. The first tag in a pair is the start tag, the second tag is the end tag (they are also called opening tags and closing tags). In between these tags web designers can add text, tables, images, etc.

The purpose of a web browser is to read HTML documents and compose them into visual or audible web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page.
</p>
<hr Color="Red">
<p align="center">HTML is written in the form of HTML elements consisting of tags, enclosed in angle brackets (like <html>), within the web page content. HTML tags normally come in pairs like and. The first tag in a pair is the start tag, the second tag is the end tag (they are also called opening tags and closing tags). In between these tags web designers can add text, tables, images, etc.

The purpose of a web browser is to read HTML documents and compose them into visual or audible web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page.
</p>

</body>
</html>

See in the browser :
click image to zoom
View Full →

Tag Line Break

To cut the sentence in an HTML document used in the function Line Break. The syntax is as follows:

. . . . <br> sentence. . . sentence. . . . </br>


examples :

<html>
<head>
<title> practice Break Line </title>
</head>
<body>
<h1 align="center">Text Without Break Line</h1>
<p>The old adage, "you are what you eat" cannot be truer than when it comes to common causes of acne. Often individuals who do not consume a healthy diet or whose diet lacks the proper amount of critical vitamins and minerals suffer from acne problems.
Remember, you body must be healthy before your skin can be healthy, so strive to eat a well balanced diet, and dedicate yourself to an active lifestyle in order to enjoy unblemished, smooth, and glowing skin.
</p>
<p>
<h1 align="center">Text With Break Line</h1>
<p>The old adage, "you are what you eat" cannot be truer than when it comes to common causes of acne. <br>Often individuals who do not consume a healthy diet or whose diet lacks the proper amount of critical vitamins and minerals suffer from acne problems.</br>
Remember, you body must be healthy before your skin can be healthy,<br> so strive to eat a well balanced diet,</br> and dedicate yourself to an active lifestyle in order to enjoy unblemished, smooth, and glowing skin.
</p>
</body>
</html>

On Browser :
View Full →

Heading Tag Function

Heading tags are tags that are used to create the title and content of an HTML document. 6 units heading tag has an number of 1, 2, 3, 4, 5, and 6. Masung respective numbers contained in heading tags used to represent the size of the heading tags. The first number is the largest size of a heading tag, while the last number in a heading tag is the smallest size. The syntax is as follows:

<hn [properti]>. . . . . . . . . </hn>

description:

- n is a number that consists of 1 to 6
- property is the ability possessed additional heading tags.

property used:

align = right arrangement headings [left, right, center]
<html>
<head>
<title> practice heading </title>
</head>
<body>
<h1 align="left"> Heading </h1>
<h2 align="left"> Heading </h1>
<h3 align="center"> Heading </h1>
<h4 align="right"> Heading </h1>
<h5 align="left"> Heading </h1>
<h6 align="right"> Heading </h1>
</body>
</html>


see in the browser

View Full →

Main Tag HTML

Main Tag HTML

HTML base tag is absolutely necessary to recognize a browser's HTML document, because basically basically an HTML document is pure text, it means an HTML document will not have any privileges if not executed on a browser. While the browser can only execute an HTML document in the document if it has been equipped with basic HTML tags yag include <html>, <head>, <title>, and <body> and closing tags.

The main HTML tags are tags that are used to manipulate the HTML document. For example, to set the paragraph, line break, etc.. The main HTML tags consist of:

- Heading

- Paragraph

- Fonts

- Line Break

- Horizontal Line

- Marquee
View Full →

Use Tag Font

Font tag to set the shape and appearance of a letter in an HTML document syntax is as follows:
<font [properties]>. . . . . . . . </ font>

Properties
Statement
Face
The shape and name of font
Size
Size of font
Color
Change the font color

Example :

<html>
<head>
<title> practice heading </title>
</head>
<body>
<h1 align="center"> Belajar Tag Properti </h1>
<p align "justify">HTML, which stands for HyperText Markup Language, is the predominant markup language for web pages. HTML is the basic building-blocks of webpages.
</p>
<font face="comic sans ms" color="blue" size="30"><p align "justify">HTML, which stands for HyperText Markup Language, is the predominant markup language for web pages. HTML is the basic building-blocks of webpages.
</p>
</font>
</body>
</html>


In the browser :


View Full →

Ads

Popular Posts