-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (67 loc) · 1.81 KB
/
index.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
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
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>ozf</title>
<link rel="stylesheet" href="./style.css">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
.word-cloud {
text-align: center;
line-height: 2;
transform: rotate(-5deg);
}
.word-cloud span {
display: inline-block;
margin: 5px;
color: #333;
transition: transform 0.3s ease;
}
.word-cloud span:hover {
transform: scale(1.1);
}
.webdev, .devops, .cloud { font-size: 20px; }
.seo, .http, .docker, .git { font-size: 16px; }
.servers, .cicd, .security, .kubernetes { font-size: 14px; }
.javascript, .react, .nodejs, .aws, .azure, .sql, .nosql, .python, .linux { font-size: 18px; }
.webdev { transform: rotate(-10deg); }
.seo { transform: rotate(5deg); }
.http { transform: rotate(-8deg); }
.cicd { transform: rotate(10deg); }
.security { transform: rotate(-4deg); }
</style>
</head>
<body>
<!-- partial:index.partial.html -->
<div class="word-cloud">
<span class="webdev">Web Development</span>
<span class="seo">SEO</span>
<span class="servers">Servers</span>
<span class="http">HTTP</span>
<span class="devops">DevOps</span>
<span class="cicd">CI/CD</span>
<span class="security">Security</span>
<span class="cloud">Cloud Computing</span>
<span class="docker">Docker</span>
<span class="kubernetes">Kubernetes</span>
<span class="git">Git</span>
<span class="javascript">JavaScript</span>
<span class="react">React</span>
<span class="nodejs">Node.js</span>
<span class="aws">AWS</span>
<span class="azure">Azure</span>
<span class="sql">SQL</span>
<span class="nosql">NoSQL</span>
<span class="python">Python</span>
<span class="linux">Linux</span>
</div>
<!-- partial -->
</body>
</html>