-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML-elements-lec.html
More file actions
44 lines (34 loc) · 1.03 KB
/
HTML-elements-lec.html
File metadata and controls
44 lines (34 loc) · 1.03 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
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<!--div -->
<div id="wrapper" class="content">
<p>content</p>
<h1>heading</h1>
</div>
<!--div 2-->
<div class="content">
<p>this is an example of
<br> <!--this is a break in the line-->
<span>inline</span> element</p>
</div>
<!--div 3 -->
<div class="content">
<ul>
<li>food</li>
<li>drinks</li>
<li>resturants</li>
</ul>
</div>
<!-- <img src="https://www.motortrend.com/uploads/sites/21/2021/08/001-1968-chevy-c10-muscle-truck-action.jpg?fit=around%7C875:492 alt="classic chevy truck">-->
<!-- <img src="https://i.ytimg.com/vi/4Sc7N6QAZ-M/maxresdefault.jpg" alt="lifted truck">-->
<br>
</body>
</html>