-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.html
More file actions
126 lines (109 loc) · 3.34 KB
/
banner.html
File metadata and controls
126 lines (109 loc) · 3.34 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LinkedIn Banner</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
body {
background: #020617;
}
.banner {
height: 315px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(circle at top, #1e293b, #020617);
}
.content {
text-align: center;
padding: 0 24px;
}
h1 {
font-size: 3rem;
font-weight: 700;
color: #e5e7eb;
}
h1 span {
color: #8b5cf6;
}
.focus {
margin-top: 10px;
font-size: 1.05rem;
color: #c7d2fe;
}
.highlight {
margin-top: 8px;
font-size: 1.1rem;
font-weight: 600;
color: #a78bfa;
}
.ops {
margin-top: 6px;
font-size: 0.95rem;
color: #a5b4fc;
}
.values {
margin-top: 6px;
font-size: 0.9rem;
color: #94a3b8;
}
.stack {
margin-top: 14px;
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
}
.stack span {
padding: 6px 12px;
border-radius: 999px;
background: rgba(139, 92, 246, 0.15);
color: #ddd6fe;
font-size: 0.8rem;
}
/* Mobile */
@media (max-width: 768px) {
h1 {
font-size: 2.2rem;
}
}
</style>
</head>
<body>
<section class="banner">
<div class="content">
<h1>Software <span>Developer</span></h1>
<p class="focus">Backend • Frontend • APIs REST</p>
<p class="highlight">PHP & Laravel</p>
<p class="ops">CI/CD • Docker • Nginx</p>
<p class="values">Performance • Scalability • Security</p>
<div class="stack">
<span>PHP</span>
<span>Laravel</span>
<span>JS</span>
<span>MySQL</span>
<span>PostgreSQL</span>
<span>Docker</span>
<span>CI/CD</span>
<span>Git</span>
<span>Nginx</span>
<span>Tailwind</span>
<span>Bootstrap</span>
</div>
</div>
</section>
</body>
</html>