-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebdev4.html
More file actions
40 lines (37 loc) · 1.27 KB
/
webdev4.html
File metadata and controls
40 lines (37 loc) · 1.27 KB
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
31
32
33
34
35
36
37
38
39
40
<!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>Heading Paragraphs and Emmet</title>
</head>
<body>
<h1>Sejal</h1>
<h2>Sejal</h2>
<h3>Sejal</h3>
<h4>Sejal</h4>
<h5>Sejal</h5>
<p>This is Sejal Phatangare</p>
<p>This is a new Paragraph</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Placeat impedit facere sint aliquam soluta! Hic, minima assumenda! Tenetur, <strong>This is Strong</strong> quo molestias voluptate excepturi explicabo fugiat qui ex odit <em>This is emphasis</em> dolorum<b>this is bold</b> deleniti iste aliquid sed officiis itaque<i>This is italic</i> beatae suscipit placeat at.</p>
<!--Just write Lorem and the number of words you want to type just for checking the website(dummy text)-->
<p>Lorem, ipsum.</p>
<!-- just write p*4 and it will insert 4 paragraphs -->
<p></p>
<p></p>
<p></p>
<p></p>
<p>fjhdjj</p>
<p>ajgjkl</p>
<p>hhg</p>
<p></p>
<p>this is paragraph shortcut type <strong>P</strong></p>
<p>This is paragraph for line break
<br> add br tag
<br>add a new Line:
<hr> adds a new ruled line like -----------
<!-- ctrl + enter to jump on the new line -->
</p>
</body>
</html>