-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsponsors.html
38 lines (34 loc) · 1.04 KB
/
sponsors.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
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- styling -->
<style>
.imageContainer {
background-color: rgb(86, 131, 131);
display: flex;
justify-content: space-around;
align-items: center;
height: 100px;
margin-left: 200px;
margin-right: 200px;
}
.images {
width: 50px;
object-fit: over;
}
</style>
</head>
<body>
<!-- sponsor secton -->
<div class="imageContainer">
<img src="c:\Users\ADMIN\Downloads\download.png" class="images">
<img src="c:\Users\ADMIN\Downloads\download (2).png" class="images">
<img src="c:\Users\ADMIN\Downloads\download (1).png" class="images">
<img src="c:\Users\ADMIN\Downloads\download (3).png" class="images">
<img src="c:\Users\ADMIN\Downloads\download (4).png" class="images">
</div>
</body>
</html>