DEV Community

eveline philipia
eveline philipia

Posted on

Introduction Html And Css

HTML stands for Hyper Text Markup Language,

Advantages of learning HTML

Create Web site - You can create a website or customize an existing web template if you know HTML well.

Become a web designer - If you want to start a carrer as a professional web designer, HTML and CSS designing is a must skill.

Understand web - If you want to optimize your website, to boost its speed and performance, it is good to know HTML to yield best results.

Learn other languages - Once you understands the basic of HTML then other related technologies like javascript, php, or angular are become easier to understand.

HTML Tags

<!DOCTYPE...>
Enter fullscreen mode Exit fullscreen mode

This tag defines the document type and HTML version.

2
This tag encloses the complete HTML document and mainly comprises of document header which is represented by

... and document body which is represented by ... tags.

3


This tag represents the document's header which can keep other HTML tags like , etc.

4


The tag is used inside the tag to mention the document title.

5


This tag represents the document's body which keeps other HTML tags like

, ,

etc.

6


This tag represents the heading.

7


Th
An HTML element is defined by a starting tag,
HTML element,

...

is another HTML element. There are some HTML elements which don't need to be closed, such as ,
and
elements.

The four core attributes that can be used on the majority of HTML elements (although not all) are −

Id
Title
Class
Style

Top comments (0)