forked from Anuj-Kumar-Sharma/Web-Development-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
16 lines (14 loc) · 956 Bytes
/
Copy pathindex2.html
File metadata and controls
16 lines (14 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>My Cool Website</title>
</head>
<body>
<!-- WE can used "br-tag" to break the line in paragraph and "hr-tag" to create horizonatal line btween two paragraph -->
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quibusdam ex sapiente quas corporis placeat doloribus iste nostrum minima rerum ad sequi vero aperiam, <br> <br> quos magnam harum tempore pariatur illo accusamus. Itaque voluptatibus eius placeat quam commodi saepe in deserunt id tempore voluptate, dignissimos est tempora reprehenderit officiis, sapiente corrupti sequi?</p> <hr> <hr>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sint praesentium unde quam nostrum iure id a veritatis beatae repellat odit.</p>
</body>
</html>