-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasics_of_HTML.html
More file actions
30 lines (29 loc) · 926 Bytes
/
Basics_of_HTML.html
File metadata and controls
30 lines (29 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//Headings,Paragraph
<!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>Headings and paragraph</title>
</head>
<body>
<h1>Hey there</h1>
<h2>I am dani</h2>
<h3>I am becoming web developer</h3>
<h4>So</h4>
<h5>I will</h5>
<h6>ONE DAY</h6>
<p>
<hr> ipsum dolor sit amet consectetur adipisicing elit. Sint suscipit corrupti illum, reiciendis fugiat deserunt voluptatum reprehenderit iure sunt cum fuga nemo culpa. Odio voluptatibus sed, ex dignissimos aspernatur adipisci?</p>
<!-- ctrl + enter to jump in new line -->
<!-- lorem30 for 30 dumy text -->
<!-- emmet advantage p*4 -->
<p>This</p>
<p>is</p>
<p>full stack</p>
<p>
<div><strong>Website</strong></div>
<em>Emphasis <br></em>
web development</p>
</html>