This repository was archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (128 loc) · 4.67 KB
/
index.html
File metadata and controls
133 lines (128 loc) · 4.67 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Noops Clone</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="hamburger">
<div></div>
<div></div>
<div></div>
</div>
<img src="assets/noops-logo.png" alt="Noops logo">
<nav>
<a href="">HOW IT WORKS</a>
<a href="">CHALLENGES</a>
<a href="">JOIN</a>
</nav>
</header>
<section class="welcome-container">
<section class="container">
<img src="assets/machine.png" alt="Machine image">
<div>
<h2>Welcome, challenger</h2>
<p>Let's have fun with code. See what our very smart—and very useless—robots have in store for you.</p>
</div>
</section>
</section>
<section class="challenges-container">
<section class="container">
<h3>Up for a challenge?</h3>
<p>Pick a prompt, view the README, fork the code, and start writing!</p>
<p>We'd love to see what you can do. Show us in the GitHub Community Forum.</p>
<h3>Week 1</h3>
<section class="challenges">
<a href="#">
<div>
<figure class="circles">
<span></span>
<span></span>
</figure>
<p>MEET</p>
<h4>HEXBOT</h4>
</div>
<img src="assets/hexbot.png" alt="Hexbot image">
<p>Hex codes everywhere</p>
<p>A different color with every ping</p>
<p>LEVEL 1</p>
</a>
<a href="#">
<div>
<figure class="circles">
<span></span>
<span></span>
</figure>
<p>MEET</p>
<h4>HEXBOT</h4>
</div>
<img src="assets/hexbot.png" alt="Hexbot image">
<p>Hex codes everywhere</p>
<p>A different color with every ping</p>
<p>LEVEL 1</p>
</a>
<a href="#">
<div>
<figure class="circles">
<span></span>
<span></span>
</figure>
<p>MEET</p>
<h4>HEXBOT</h4>
</div>
<img src="assets/hexbot.png" alt="Hexbot image">
<p>Hex codes everywhere</p>
<p>A different color with every ping</p>
<p>LEVEL 1</p>
</a>
<a href="#">
<div>
<figure class="circles">
<span></span>
<span></span>
</figure>
<p>MEET</p>
<h4>HEXBOT</h4>
</div>
<img src="assets/hexbot.png" alt="Hexbot image">
<p>Hex codes everywhere</p>
<p>A different color with every ping</p>
<p>LEVEL 1</p>
</a>
<a href="#">
<div>
<figure class="circles">
<span></span>
<span></span>
</figure>
<p>MEET</p>
<h4>HEXBOT</h4>
</div>
<img src="assets/hexbot.png" alt="Hexbot image">
<p>Hex codes everywhere</p>
<p>A different color with every ping</p>
<p>LEVEL 1</p>
</a>
<a href="#">
<div>
<figure class="circles">
<span></span>
<span></span>
</figure>
<p>MEET</p>
<h4>HEXBOT</h4>
</div>
<img src="assets/hexbot.png" alt="Hexbot image">
<p>Hex codes everywhere</p>
<p>A different color with every ping</p>
<p>LEVEL 1</p>
</a>
</section>
</section>
</section>
<footer></footer>
</body>
</html>