-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
83 lines (80 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nav-bar</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header class="header">
<nav>
<ul class="nav_link">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="#">Projects</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">More</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</nav>
</header>
<main id="Home">
<section class="section1">
<ul>
<li>Learn a high paying<span style="color: brown;">Skill</span>.</li>
<li>Get real <span style="color: brown;">opportunities</span>.</li>
<li>Be a part of a <span style="color: brown;">community</span>.</li>
<li><input type="button" class="button1" value="Get Started" id="input"></li>
</ul>
</section>
<section class="section2">
<h2>Skill Paths</h2>
<div class="container">
<div id="box1">
<h3>FrontEnd Development</h3>
<p>Front End engineers make the beautiful web fronts</p>
<input type="button" class="boxbutton" value="Get started ➡ " id="input">
</div>
<div id="box2">
<h3>Backend Development</h3>
<p>Back End engineers make all the powerful functionalities behind the scenes</p>
<input type="button" class="boxbutton" value="Get started ➡ " id="input">
</div>
<div id="box3">
<h3>UI / UX Design</h3>
<p>ui designer seeks to make apps and websites both visually appealing and easy to navigate</p>
<input type="button" class="boxbutton" value="Get started ➡ " id="input">
</div>
</div>
</section>
<section class="section3">
<h2>Don't know where</br> to start?Speak to</br> a mentor</h2>
<div class="input">
<input type="button" class="newbutton" value="Get started" id="input">
</div>
</section>
<section class="section4">
<h2>Join the</br> community and </br>begin learning</h2>
</section>
<section class="section5">
<h2>Check Our </br>Community</br> projects</h2>
<div class="input2">
<input type="button" class="newbutton" value="projects" id="input">
</div>
</section>
</main>
</body>
</html>