-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (105 loc) · 4.41 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
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
<!DOCTYPE html>
<html>
<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" />
<!-- Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto:wght@500&display=swap" rel="stylesheet">
<!-- General CSS -->
<link rel="stylesheet" href="assets/css/general.css">
<!-- Header CSS -->
<link rel="stylesheet" href="assets/css/header.css">
<!-- Section 1 CSS -->
<link rel="stylesheet" href="assets/css/main.css">
<!-- Favicons -->
<!-- Title -->
<title>
Dev Reactor
</title>
</head>
<body>
<<<<<<< HEAD
<div class="navbar">
<div class="navbar-flex-container">
<h1>Ben's Awesome Coding Bootcamp</h1>
<nav>
<ul>
<li class="nav">
<a class="login" href="#">Login</a>
</li>
<li class="nav">
<a class="courses" href="#">Check Courses</a>
</li>
</ul>
</nav>
</div>
</div>
=======
<!-- Navbar -->
<nav class="header-container">
<div class="header-title">
<a class="header-logo-link" href ="#">
<img class="header-logo" src="assets/images/dev-reactor-logo-4.png">
</a>
</div>
<div class="header-right-section">
<a class="header-home" href="#">Home</a>
<a class="header-about" href="#">About</a>
<a class="header-curriculum" href="#">Curriculum</a>
<a class="header-dates" href="#">Dates</a>
<a class="header-schedule-options" href="#">Schedule Options</a>
<a class="header-signup" href="#">Apply</a>
</div>
</nav>
<!-- Main Section -->
<main>
<!-- Hero Section-->
<section class="hero">
<div class="hero-left-image-container">
<img class="hero-left-image" src="assets/images/SE-Hero-Image-1.svg">
</div>
<div class="hero-right-section-container">
<h1 class="hero-intro">Ignite your Software Engineering Career</h1>
<p class="hero-description">Become a Software Engineer in less than 15 weeks</p>
<button class="hero-btn">Apply Now</div>
</button>
</section>
<!-- About Section -->
<section class="about">
<div class="about-container">
<div class="about-button-container">
<button id="btn1" class="about-button">SOFTWARE DEVELOPER</button>
<button id="btn2" class="about-button">FRONT END DEVELOPER</button>
<button id="btn3" class="about-button">BACK END DEVELOPER</button>
<button id="btn4" class="about-button">FULL STACK DEVELOPER</button>
</div>
<div class="section-container">
<div id="section1" class="section active">
<div>
<h1>Software Developer</h1>
<p>A sdfadfaffsdfsdfdaf fdf d af f fds </p>
</div>
</div>
<div id="section2" class="section">
<p>FRONT END DEVELOPER</p>
</div>
<div id="section3" class="section">
<p>BACK END DEVELOPER</p>
</div>
<div id="section4" class="section">
<p>FULL STACK DEVELOPER</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
</footer>
<script src="assets/js/main.js"></script>
>>>>>>> bc534fac9e912cfe5b4e8705bd8bc84415979763
</body>
</html>