PDA

View Full Version : What is HTML example?



pooja escorts
07-03-2020, 03:41 PM
What is HTML example?

Saravanan28
08-14-2020, 01:24 PM
Hypertext Markup Language (HTML) is the most common language used to create documents on the World Wide Web. HTML uses hundreds of different tags to define a layout for web pages. Most tags require an opening <tag> and a closing </tag>. support@yourcompany.com</a>.

a1auto
08-14-2020, 10:11 PM
Here's an example I pulled from W3schools, which I recommend looking at if you want to learn HTML or know more about it:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

yuva12
08-28-2020, 10:49 AM
"Hypertext" refers to the hyperlinks that an HTML page may contain. "Markup language" refers to the way tags are used to define the page layout and elements within the page. Below is an example of HTML used to define a basic webpage with a title and a single paragraph of text.

jesica
08-29-2020, 10:13 AM
HTML is a Language, as it has code-words and syntax like any other language.
Example:
<html>
<head>
<title>Href Attribute Example</title>
</head>
<body>
<h1>Href Attribute Example</h1>
<p>
<a href="https://www.freecodecamp.org/contribute/">The freeCodeCamp Contribution Page</a> shows you how and where you can contribute to freeCodeCamp's community and growth.
</p>
</h1>
</body>
</html>

shaili shah
09-03-2020, 03:49 AM
First html document is start with <!doctype>.
There is 4 to 5 basic tags are <html>, <head>, <body>, <div>, <br /> etc.

<!doctype>
<html>
<head>
<link/>
<title></title>
</head>
<body>
<p>in body tag there is logic or what you want to display that comes here.
</body>
</html>

There is a link tag in header tag to include external css and in header tag you can add your script.

Hope it helps.

Thanks!

tuxandrew
09-08-2020, 06:32 AM
What is HTML example?

Using HTML you can make simple static web pages for a website.

nicksavoia
09-08-2020, 08:46 PM
Html is world's simplest language because it's the base of programming.

yuva12
09-17-2020, 09:00 AM
HTML stands for Hypertext Markup Language. It allows the user to create and structure sections, paragraphs, headings, links, and blockquotes for web pages and applications. ... For example, we can create a paragraph by placing the enclosed text within a starting <p> and closing </p> tag.