-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboxes.html
26 lines (26 loc) · 840 Bytes
/
boxes.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
<!DOCTYPE HTML >
<HTML lang="en">
<HEAD>
<TITLE>3 BOXES WITH COLOR, IMAGE, AND TEXT</TITLE>
</HEAD>
<BODY>
<div style = "width:300px; height:300px; background-color: #FF0000;">
<img src="c:\Users\DATA SCIENCE LAB 27\Downloads\imresizer-1708830025083.jpg">
<div class="text-block">
sample 1
</div>
</div>
<div style = "width:300px; height:300px; background-color: #00FF00;">
<img src="c:\Users\DATA SCIENCE LAB 27\Downloads\imresizer-1708830025083.jpg">
<div class="text-block">
sample 2
</div>
</div>
<div style = "width:300px; height:300px; background-color: #0000FF;">
<img src="c:\Users\DATA SCIENCE LAB 27\Downloads\imresizer-1708830025083.jpg">
<div class="text-block">
sample 3
</div>
</div>
</BODY>
</HTML>