-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselector.html
31 lines (28 loc) · 1005 Bytes
/
selector.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<header>
<h1>Entri Courses</h1>
</header>
<div class="nav">
<ul>
<li>Html</li>
<li>CSS</li>
<li>Mongo</li>
</ul>
</div>
<div id="section">
<h1>Html</h1>
<p>HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages.</p>
</div>
<div class="footer">
<p>www.entri.com</p>
</div>
</body>
</html>