-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (37 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheet -->
<link rel="stylesheet" href="/css/style.css">
<title>Doing dev challenges</title>
</head>
<body>
<div class="container">
<div class="title">
<h1 class="main-title">DevChallenges.io Challenges</h1>
</div>
<div class="main-cards">
<div class="card">
<h3>Responsive <br>Web Developer Path</h3>
<img src="/img/hal-gatewood-tZc3vjPCk-Q-unsplash.jpg" alt="responsive web design elements">
<a href="/responsive_web_developer/" class="btn">8/8 Completed</a>
</div>
<div class="card">
<h3>Front-end <br>Developer Path</h3>
<img src="/img/altumcode-zE007SNgcdE-unsplash.jpg" alt="front-end developer path image">
<a href="#" class="btn btn-light">0/8 Completed</a>
</div>
<div class="card">
<h3>Full-stack <br>Developer Path</h3>
<img src="/img/ryland-dean-6k6N8HTrXyE-unsplash.jpg" alt="full stack developer path">
<a href="#" class="btn btn-light">0/8 Completed</a>
</div>
</div> <!-- main cards-->
<footer>
<div class="footer"> Code on <a href="https://github.com/ppusher/DevChallenges.io">Github</a>. Images from unsplash</div>
</footer>
</div> <!-- container-->
</body>
</html>