-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 832 Bytes
/
index.html
File metadata and controls
39 lines (35 loc) · 832 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
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cogent</title>
<style>
body {
background-color: #000;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
img {
max-width: 100%;
max-height: 100%;
width: 25%;
}
footer {
position: absolute;
bottom: 0;
color: #303030;
text-align: center;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<img src="logo.jpg" alt="cogent logo">
</body>
<footer>
© 2024 all rights reserved
</footer>
</html>