-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
67 lines (64 loc) · 1.66 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roave at PHP[tek] 2025</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;
margin: 0;
padding: 10px;
box-sizing: border-box;
flex-wrap: wrap;
}
img {
padding: 20px;
margin: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 200px;
max-width: 40%;
height: auto;
display: block;
}
span {
font-size: 50px;
margin: 20px;
}
a {
display: flex;
justify-content: center;
}
@media (max-width: 600px) {
body {
flex-direction: column;
height: auto;
}
img {
width: 150px;
max-width: 60%;
margin: 15px;
padding: 15px;
}
span {
font-size: 40px;
margin: 15px;
}
}
</style>
</head>
<body>
<a href="https://roave.com/">
<img src="https://avatars.githubusercontent.com/u/3029050?s=500&v=4" alt="Roave Logo">
</a>
<span>❤️</span>
<a href="https://2025.phptek.io/">
<img src="https://2025.phptek.io/assets/images/phptek-2025.svg" alt="PHP[tek] 2025 Logo">
</a>
</body>
</html>