-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathPromises.html
More file actions
45 lines (35 loc) · 693 Bytes
/
Copy pathPromises.html
File metadata and controls
45 lines (35 loc) · 693 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
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<style>
#container {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.title {
font-weight: bold;
margin: 5px;
font-size: 20px;
}
.price {
font-weight: bold;
margin: 5px;
font-size: 20px;
color: blue;
}
.description {
margin: 5px;
font-size: 20px;
color: rgb(37, 33, 33);
}
.img {
height: 150px;
}
</style>
</head>
<body>
<div id="container"></div>
<script src="Promises.js" />
</body>
</html>