-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStarting of HTML
More file actions
23 lines (18 loc) · 1002 Bytes
/
Starting of HTML
File metadata and controls
23 lines (18 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookmark Webpage</title>
<link rel="stylesheet"href="style.css">
</head>
<body>
<h1 style="inline-size: 20">Welcome to our webpage!!</h1><!--here style=inline size is an attribute-->
<h2>This is the starting of the webpage</h2>
<!--this is the first paragraph-->
<p style="background-color: rgb(59, 216, 59);">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam blanditiis, quas temporibus similique fugit maiores veritatis nam aliquam fugiat. Mollitia fugit rem itaque.</p>
<!--This is the paragraph second-->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt magnam temporibus minima repellat odio voluptatibus doloribus quaerat ipsam, beatae unde. Nulla voluptatem accusantium dolorem iure numquam ad quas porro adipisci!</p>
<script src="script.js"></script>
</body>
</html>