This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (61 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="src/style.css" />
<meta name="viewport" content="width=device-width" />
<title>Frontend Smackdown Competition</title>
<meta name="title" content="Frontend Smackdown Competition">
<meta name="description" content="A high-stakes competition to celebrate our creative abilities as frontend engineers.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://amboss-mededu.github.io/frontend-smackdown/">
<meta property="og:title" content="Frontend Smackdown Competition">
<meta property="og:description" content="A high-stakes competition to celebrate our creative abilities as frontend engineers.">
<meta property="og:image" content="https://amboss-mededu.github.io/frontend-smackdown/src/share.png">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://amboss-mededu.github.io/frontend-smackdown/">
<meta property="twitter:title" content="Frontend Smackdown Competition">
<meta property="twitter:description" content="A high-stakes competition to celebrate our creative abilities as frontend engineers.">
<meta property="twitter:image" content="https://amboss-mededu.github.io/frontend-smackdown/src/share.png">
</head>
<body>
<div class="animation">
<div class="x">
<div class="y">
<div class="div"></DIV></div>
</div>
</div>
</div>
<div class="main">
<svg viewBox="0 0 86 32" class="title">
<text x="50%" y="15" text-anchor="middle" fill="yellow" font-family="Impact, Impact-ttf">FRONTEND</text>
<text x="50%" y="30" text-anchor="middle" fill="yellow" font-family="Impact, Impact-ttf">SMACKDOWN</text>
</svg>
<h2>The challenge</h2>
<p>Your task is to craft a landing page that presents who you are and that showcase your unique skills as a frontend engineer.
Wether you're a master of stylesheets, javascript or plain ol' HTML, this is your chance to show us what you've got!</p>
<p class="prizeIntro">
In addition to eternal fame and glory,
<br>the best submission will be awarded with a grand prize of
</p>
<div class="prize"><img src="src/prize.gif" />0.005 ETH<img src="src/prize.gif" /></div>
<div class="prizeConverted">btw that's <span id="eur"></span></div>
<h2>Submission guidelines</h2>
<ul>
<li>Commit your project to this repository and place it under a folder with your name in the submissions folder.</li>
<li>If you use any build tools, remember to compile the project so that it can be accessed directly as a github page.</li>
<li>Entries must be uploaded before the presentations on the 21st of April.</li>
</ul>
</div>
<script>
fetch('https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=EUR')
.then(response => response.json())
.then(({EUR}) => {
const exchange = (0.005 * EUR).toFixed(2).toString()
document.getElementById('eur').textContent = `${exchange} €`;
});
</script>
</body>
</html>