HTML
HTML Basic Tags
¶What is Tags in HTML
¶How many Tags in HTML
There are many HTML tags. But regurlary for web designing we use some tags. Those are -
- ** !DOCTYPE html**: This is the first line of code in any HTML document. It defines the document type and helps the web browser to understand how to render the web page. Example -
<!DOCTYPE html>
-
html: This tag is used to start and end an HTML document. Example -
<html>
-
head: This tag contains the meta information about the web page, such as the title of the page, links to stylesheets, and scripts. Example -
<head>
-
title: This tag is used to specify the title of the web page. The title appears in the browser’s title bar and is also used by search engines to display the page’s title in search results. Example -
<title>
- body: This tag is used to define the content of the web page, including text, images, videos, and other media.
- ** h1 - h6**: These tags are used to create headings on a web page.
<h1>
is the largest heading and<h6>
is the smallest heading. - p: This tag is used to create paragraphs on a web page.
- a: This tag is used to create hyperlinks on a web page. The href attribute specifies the URL of the page that the link points to.
- img: This tag is used to insert images on a web page. The src attribute specifies the URL of the image.
-
ul and li: These tags are used to create unordered lists on a web page.
ul
for unordered list andli
for list item
¶Example tags for a page could be like this -
<!DOCTYPE html>
<html>
<head>
<title>Welcome to DevsEnv</title>
</head>
<body>
<h2>Welcome to DevsEnv, I'm a simple h2 tag</h2>
<p>Welcome to DevsEnv, I'm a simple p tag</p>
</body>
</html>
¶LIVE Preview
Welcome to DevsEnv, I'm a simple h2 tag
Welcome to DevsEnv, I'm a simple p tag
¶Another
Advertisements
All Tutorials in this playlist
Popular Tutorials
Categories
-
Artificial Intelligence (AI)
11
-
Bash Scripting
1
-
Bootstrap CSS
0
-
C Programming
14
-
C#
0
-
ChatGPT
1
-
Code Editor
2
-
Computer Engineering
3
-
CSS
28
-
Data Structure and Algorithm
18
-
Design Pattern in PHP
2
-
Design Patterns - Clean Code
1
-
E-Book
1
-
Git Commands
1
-
HTML
19
-
Interview Prepration
2
-
Java Programming
0
-
JavaScript
12
-
Laravel PHP Framework
37
-
Mysql
1
-
Node JS
1
-
Online Business
0
-
PHP
28
-
Programming
8
-
Python
12
-
React Js
19
-
React Native
1
-
Redux
2
-
Rust Programming
15
-
SEO - Search Engine Optimization
1
-
Tailwind CSS
1
-
Typescript
10
-
Uncategorized
0
-
Vue JS
1
-
Windows Operating system
1
-
Woocommerce
1
-
WordPress Development
2
Tags
- Artificial Intelligence (AI)
- Bash Scripting
- Business
- C
- C Programming
- C-sharp programming
- C++
- Code Editor
- Computer Engineering
- CSS
- Data Structure and Algorithm
- Database
- Design pattern
- Express JS
- git
- Git Commands
- github
- HTML
- Java
- JavaScript
- Laravel
- Mathematics
- MongoDB
- Mysql
- Node JS
- PHP
- Programming
- Python
- React Js
- Redux
- Rust Programming Language
- SEO
- TypeScript
- Vue JS
- Windows terminal
- Woocommerce
- WordPress
- WordPress Plugin Development
Advertisements