-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday12.html
More file actions
25 lines (24 loc) · 751 Bytes
/
Copy pathday12.html
File metadata and controls
25 lines (24 loc) · 751 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
<!DOCTYPE html>
<html>
<head>
<title>DAY 12</title>
</head>
<body>
<div style="width:125px; height:125px; background:red">
<p>hello paragraph</p>
<h1>Hello heading</h1>
</div>
<div style="width:400px; height:125px; background:green; display:inline-flex;">
<img src="C:\Users\ADMIN\OneDrive\Pictures\Saved Pictures" width="200px" height="200px">
</div>
<h1>AUDIO Video Demo</h1>
<audio>
<source src="audio.mp3" type="audio/mp3">
</audio>
<video controls width="200px">
<source src="dummy.mp4" type="video/mp4">
</video>
</body>
<script>
</script>
</html>