-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mintbean Learn-a-bit Challenge 01 - Header</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&family=Viga&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<nav class="nav">
<div class="container">
<img class="logo" src="./images/learnabit-logo.png" alt="logo">
<ul class="nav_list">
<li class="nav_item"><a class="nav_link" href="#">Intro</a></li>
<li class="nav_item"><a class="nav_link" href="#">About</a></li>
<li class="nav_item"><a class="nav_link" href="#">Team</a></li>
<li class="nav_item"><a class="nav_link" href="#">Contact</a></li>
<li class="nav_item"><a class="nav_link button" href="#">Join</a></li>
</ul>
<a href="#" class="hamburger"><i class="fa fa-bars"></i></a>
</nav>
</div>
<div class="container">
<section class="hero">
<article class="card">
<h1 class="card_title">
Level up bit by bit with Learn-a-bit
</h1>
<p class="card_text">
As the name says, the purpose of
Learn-a-bit is about learning one bit
of code at a time. In these events,
you will build small projects to
educate yourself on the fundamentals
of web development using HTML, CSS,
and JavaScript. These events are
relaxed and non-competitive, but are
still challenging enough to push you
to use all your resources and
knowledge to solve each problem.
</p>
<a class="button" href="#">Join a learn-a-bit</a>
</article>
</section>
</div>
</header>
</body>
</html>