-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
40 lines (33 loc) · 1001 Bytes
/
practice.html
File metadata and controls
40 lines (33 loc) · 1001 Bytes
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>
<head>
<link rel="stylesheet" href="practice.css">
</head>
<body>
<div class="the-big-container">
<h1>New Arrival In Toys</h1>
<div class="container">
<div class="item1">
<p>Listen to Angels by KB</p>
<audio controls autoplay muted width="100%">
<source src="KB_-_Angels_CeeNaija.com_.mp3" type="audio/mpeg">
</audio>
</div>
<div class="item2">
<p>Watch Case Study on Business<br>Idea Types</p>
<video width="100%" height="200px" controls="controls">
<source src="10.Case Study on Business Idea Types_ Shyp _ Product Design _ Udacity.mp4" type="video/mp4">
</video>
</div>
<div class="item3">
<p>
You are Unique<br>Wonderful and made<br>in the image of God
</p>
</div>
<div class="item4">
<div class="white-container">item4 A</div>
<div class="blue-container">item4 B</div></div>
</div>
</div>
</body>
</html>