-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
19 lines (18 loc) · 1.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<title>Hacktoberfest 2019</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<style type="text/css">
#bg-body {
background-color: #8A2BE2; /* For browsers that do not support gradients */
background-image: linear-gradient(#8A2BE2, #FFC0CB); /* Standard syntax (must be last) */
}
</style>
</head>
<body id= "bg-body" class="font-sans bg-gray-100">
<div class="bg-white max-w-xl mx-auto shadow rounded-lg p-4 text-center">
<img class="inline mb-2" src="https://hacktoberfest.digitalocean.com/_nuxt/img/logo-hacktoberfest-full.f42e3b1.svg" alt="Hacktoberfest Logo" width="475" style="will-change: transform; transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);">
<p>Hacktoberfest® is open to everyone in our global community. Whether you’re a developer, student learning to code, event host, or company of any size, you can help drive growth of open source and make positive contributions to an ever-growing community. All backgrounds and skill levels are encouraged to complete the challenge.</p>
</div>
</body>
</html>