-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 931 Bytes
/
index.html
File metadata and controls
40 lines (36 loc) · 931 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pds.ai</title>
<link rel="icon" type="image/png" sizes="32x32" href="assets/pds_ai_favicon.png">
<style>
body, html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
background-color: #373027; /* dark gray */
color: #fabf9a; /* pale, pinkish-orange */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
img {
max-width: 50%; /* You can adjust this value */
max-height: 50vh; /* And/or this value to resize your image */
height: auto; /* Maintains the aspect ratio */
}
.logo-text {
margin-top: 20px;
font-size: 2em;
}
</style>
</head>
<body>
<img src="assets/full_body_pds.png" alt="pds.ai Logo">
<div class="logo-text">pds.ai</div>
</body>
</html>