-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (81 loc) · 2.03 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1,
maximum-scale=5"
/>
<link rel="icon" href="devchallenges.png" />
<link
rel="shortcut icon"
type="image/x-icon"
href="https://devchallenges.io/"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<title>Devchallenges</title>
<style>
body {
font-family: "Poppins", sans-serif;
}
ul {
padding-left: 24px;
}
li {
margin-bottom: 8px;
}
.welcome {
max-width: 800px;
margin: 0 auto;
}
.welcome-text {
margin-top: 30vh;
font-weight: 500;
}
.welcome-text p {
font-size: 1rem;
font-weight: 400;
}
.welcome-text h1 {
font-size: 1.5rem;
}
.welcome-text a {
color: #f7542e;
}
</style>
</head>
<body>
<div class="welcome">
<div class="welcome-text">
<h1>
Welcome to
<a href="https://devchallenges.io/" target="_blank"
>devchallenges.io</a
>
</h1>
<p>
If you have any questions, don't hesitate to ask on Discord. Here are
7 general steps to complete the challenge:
</p>
</div>
<ul>
<li><b>Step 1:</b> Create a new repository on github</li>
<li><b>Step 2:</b> Copy resources, README.md to your repository</li>
<li>
<b>Step 3:</b> Login to Figma to checkout font, color, spacing,..
</li>
<li><b>Step 4:</b> Complete all user stories</li>
<li><b>Step 5:</b> Update README.md</li>
<li><b>Step 6:</b> Deploy your app and submit your solution</li>
<li>
<b>Step 7:</b> Share your solution on Discord, Twitter and other
platforms to ask for feedback
</li>
</ul>
</div>
</body>
</html>