# Introduction HTML

 **1.web server:** web server is a software and it served web site. example: various kind of web server .apache,cpanal,niginx etc...

**2.Apache server: ** apache server in http server at properly work should be located index.html

**3.live server :** live server is the best extensions in VS code. launch properly work is a single click

**4.code editor software :**  all programmer use code editor software.this is very helpful for programmers bacause vaeious kind of short cut tools. example atom,sublime text,VS code etc

**5.VS code**: a huge no of programmer use VS code bacause VS code tool kit, more them and abbrevition so extremly good as well as other code editor.

**6.emmet:** emmet it a plug ins in code editor.by defult in use VS code.Emmet is must be used HTML

**!DOCTYPE html**

```
<!DOCTYPE html >
```
```
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h2></h2>
</body>
</html>
```

HTML html a few no of tag use <!DOCTYPE html> all HTML docoments must start with a <!DOCTYPE> "!" and hit "Tab" buttom and open the tamplate. can u use "html:5" open the tamplate.

meta tag used about the html. this no of value you put i.e charter_set,text,content etc

html stand by Hyper Text Murkap Language.html divided no of parts 1.head part 2. body part . 1.head part

**title tag**
```
<title>Document</title>
```

this tag use name of title of the page

**heading tag**
```
<h1> introduction HTML</h1>
```

this tag use heading name of your page.

**paragraph tag**
```
<P> HTML stand by Hyper Text Markup Language</P>
```
this tag use write a paragraph of the page.

**lorem**

this is a provied specified amount of rendom text.
just type lorem7 and hit Tab
```
<body>
    Lorem ipsum, dolor sit amet consectetur adipisicing.
</body>
```
**image tag**

img tag use to insert the image  in web page.
   ```
<img src="ms dhoni.jpg" alt="ms dhoni">
```
