-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (63 loc) · 2.81 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>StartNG</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:400,500,700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="banner">
<div class="container">
<h1 class="banner-headline">StartNG Interns</h1>
<p class="banner-text">Training Future Tech Leaders</p>
<button class="banner-btn">Register</button>
</div>
</div>
</header>
<main>
<section class="content">
<div class="container">
<div class="row">
<div class="col-6">
<img src="img/img1.jpg" alt="image 1">
</div>
<div class="col-6 text-content">
<h1>Welcome to StartNG</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Id dolores voluptatibus et quia
officia. Illum ea dolorem, itaque saepe, exercitationem voluptatem eligendi, nam vel sunt
tempora enim quisquam dolore nulla.</p>
<button class="btn-content">Learn More</button>
</div>
</div>
<div class="row">
<div class="col-6 text-content">
<h1>Who We Are</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Id dolores voluptatibus et quia
officia. Illum ea dolorem, itaque saepe, exercitationem voluptatem eligendi, nam vel sunt
tempora enim quisquam dolore nulla.</p>
<button class="btn-content">Learn More</button>
</div>
<div class="col-6">
<img src="img/img2.jpg" alt="image 2">
</div>
</div>
<div class="row">
<div class="col-6">
<img src="img/img3.jpg" alt="image 3">
</div>
<div class="col-6 text-content">
<h1>What We Do</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Id dolores voluptatibus et quia
officia. Illum ea dolorem, itaque saepe, exercitationem voluptatem eligendi, nam vel sunt
tempora enim quisquam dolore nulla.</p>
<button class="btn-content">Learn More</button>
</div>
</div>
</div>
</section>
</main>
<footer>© 2019 StartNG</footer>
</body>
</html>