answersLogoWhite

0

What are the four basic HTML tags?

Updated: 8/10/2023
User Avatar

Wiki User

14y ago

Best Answer

The four most basic tags are <html>, <head>, <title>, and <body>. They are necessary for every web page. The fifth most basic is up for debate, because no other tag is absolutely necessary. In my experience, <table> and <p> are also very common.

i s 'kujl

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

There are a number of answers to that. One is the Template and the Content.
The default (pretty much ALWAYS used) template for a HTML website is:






The Content goes in-between and

Another answer is the head area of the HTML file and the body area.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

The basic parts of a HTML page would be the <!DOCTYPE html> , <head>, <title>,and <body> tags, along with each tags accompanying closing tag. With those tags you can make a very simple HTML page. Below is an example.

<!DOCTYPE html>

<head>

<title>Example (this would appear in the browser's tab)</title>

</head>

<body>

This is a very simple example of a HTML page. This section would appear in the body of the page.

</body>

</html>

Of course there are many other important tags, which you can find at w3schools (see related links).

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

The five HTML tags I use most are:

<html> (To begin the document)

<body> (To begin the body of the document)

<head> (To begin the header of the document)

<title> (To name the title of the document)

<p> (To put a paragraph in the document, or text)

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

1. In terms of user experience HTML webpages typically have 3 sections:

  • header
  • main content
  • footer

This solution is very popular, but not required or imposed by any standards. You can make only header and main content, or only content.

2. In terms of HTML code, webpage has two main sections, defined by appropriate tags:

  • head section, determined by and tags
  • body section, determined by and tags.
Both sections are surrounded by and tags
This answer is:
User Avatar

User Avatar

Wiki User

14y ago

The most important tags are:

<HTML>

<HEAD>

<TITLE>

<BODY>

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

There are three important parts of a HTML page. The head, body and the title are the three important parts.

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

HE

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the four basic HTML tags?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How HTML tags needed to create a basic webpage?

HTML tags can be made to create a basic webpage. The basic tags with some text can make a webpage in basic format.


What is the first step to learn HTML?

The first step to learning HTML is leaning tags. The tags form the basic entity for HTML.


Basic HTML tags with brief description?

br


What term is a collection of html tags and options that allow you to create webpages that are more animated than basic html pages?

DHTML is a collection of tags that can allow to create a webpage. It offers more dynamic functions that basic HTML.


What are HTML tages?

HTML tags are the predefined tags that are embedded within the "&lt;&gt;". Each HTML tags has the following attributes and operations.


Enumerate the basic HTML structure's and describe each briefly?

The page starts with the HTML start tag Followed by the tags, and goes here Followed by the Tag. The followin HTML will be the content of you web page Followed by closing the Tag, and tags. Here is a sample of a Basic HTML document: the name of the page This is a basic HTML structure. This is where the content goes that will display on your page.


BASIC element of dynamic HTML?

Dynamic HTML is a combination of HTML tags and interactive web pages. Its basic elements include: an object-oriented view of web elements, cascading style sheets and dynamic fonts.


What are four basic tags needed for every single webpage?

These are the Basic Eight: &lt;html&gt; &lt;head&gt; &lt;title&gt; Data Value &lt;/title&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt; A good site to check out would be http://www.htmlcodetutorial.com


What are built-in tags Like for HTML and CSS?

No tags are used in CSS. Tags are actually what CSS primarily styles.


What is the connection of a notepad with HTML tags?

You can use Notepad to write HTML pages, and HTML consists of tags. So you would be writing a lot of tags when using Notepad to create a HTML page.


What does HTML use tags for?

HTML cannot work without it's tags. It uses tags for it's scripting work.


What is well formed HTML document?

This is the basic (and correct) formatting of a simple HTML document:Then of course there are LOTS of other tags, but that's just the beginning format.