forked from codeclannigeria/CodeClanUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
116 lines (113 loc) · 3.58 KB
/
landing.html
File metadata and controls
116 lines (113 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code Clan Landing Page</title>
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/fonts.css" />
<link rel="stylesheet" href="landing.css" />
<script
src="https://kit.fontawesome.com/becbb30976.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="wrapper">
<nav class="">
<header>
<p>CodeClan</p>
</header>
<ul>
<li><i class="fas fa-search"></i></li>
<li>
<a class="btn btn-outline-primary" href="/signin.html">Login</a>
</li>
<li>
<a class="btn btn-primary" href="/signup.html">Sign up</a>
</li>
</ul>
</nav>
<section class="header__section container">
<div class="header-about p-4">
<div class="header__about__text">
<h3>Tap into the Power of Community Learning.</h3>
<p class="">
Community learning is a great way to learn, especially ones with
dedicated mentors. Code Clan Code Clan Nigeria is the perfect
place for you.
</p>
<button class="btn btn-dark header__cta rounded-0">
Get Started
</button>
</div>
<div class="header__image">
<img
src="./img/building_blocks.png"
class="img-fluid"
alt=""
srcset=""
/>
</div>
</div>
<div class="clan_cards">
<div class="description__cards">
<div class="description__card">
<img
src="./img/real_time_collaboration.png"
class="img-fluid"
alt=""
srcset=""
/>
<p>Get assigned to a clan</p>
</div>
<div class="description__card">
<img
src="./img/dev_productivity.png"
class="img-fluid"
alt=""
srcset=""
/>
<p>Start your Journey</p>
</div>
<div class="description__card">
<img
src="./img/assigned_mentor.png"
class="img-fluid"
alt=""
srcset=""
/>
<p>Get Assigned to A mentor</p>
</div>
<div class="description__card">
<img
src="./img/porfolio_wireframe.png"
class="img-fluid"
alt=""
srcset=""
/>
<p>Work on projects/ Build a solid Portfolio</p>
</div>
</div>
</div>
</section>
<div class="description__section">
<div class="container">
<div class="description__goals">
<img src="./img/goal_target.png" class="img-fluid" alt="" />
<div class="goals__texts">
<h3>Tap into the Power of Community Learning.</h3>
<p class="my-3">
Community learning is a great way to learn, especially ones with
dedicated mentors. Code Clan Code Clan Nigeria is the perfect
place for you.
</p>
<a href="#">Learn More <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>