-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
60 lines (53 loc) · 2.69 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>CI/CD - Esercizio 2.2!</title>
<link href="https://fonts.googleapis.com/css?family=Dosis:300&display=swap" rel="stylesheet">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="/assets/css/style.css">
</head>
<body class="flex flex-col h-screen">
<!-- Header -->
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation"><a href="/"><img src="/assets/images/logo.svg" alt="Logo"></a></li>
</ul>
</nav>
</div>
<h1 class="text-muted"> Esercizio 2.2 </h1>
<p class="text-exercise">Settiamo una nuova Github Action..</p>
<!-- Content -->
<main class="flex-grow">
<div class="rounded-full mx-auto self-center relative" style="height: 400px; width: 400px; background: linear-gradient(123.19deg, #266488 3.98%, #258ECB 94.36%)">
<h1 class="font-light absolute w-full text-center text-blue-200" style="font-family: Dosis; font-size: 45px; top: 35%">Hello there,</h1>
<div class="w-full relative absolute" style="top: 60%; height: 50%">
<div class="absolute inset-x-0 bg-white" style="bottom: 0; height: 55%"></div>
<svg viewBox="0 0 1280 311" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M1214 177L1110.5 215.5L943.295 108.5L807.5 168.5L666 66.5L581 116L517 49.5L288.5 184L163.5 148L-34.5 264.5V311H1317V258.5L1214 177Z" fill="white" />
<path d="M1214 177L1110.5 215.5L943.295 108.5L807.5 168.5L666 66.5L581 116L517 49.5L288.5 184L163.5 148L-34.5 264.5L163.5 161L275 194L230.5 281.5L311 189L517 61L628 215.5L600 132.5L666 77L943.295 295L833 184L943.295 116L1172 275L1121 227L1214 189L1298 248L1317 258.5L1214 177Z" fill="#DCEFFA" />
</g>
<defs>
<clipPath id="clip0">
<rect width="1280" height="311" fill="white" />
</clipPath>
</defs>
</svg>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer clearfix">
<div class="footer-content">
<div class="copyright">
© 2023 Jumpgroup. All rights reserved.
</div>
<div class="website-link">
<a href="https://www.jumpgroup.it">Visit our website</a>
</div>
</div>
</footer>
</body>
</html>