-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 914 Bytes
/
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
<!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>E Tutor Landing</title>
<link rel="stylesheet" href="./src/css/style.css" />
</head>
<body id="welcomepage">
<div class="container">
<section class="left">
<div class="hero text-center primary">
Try our Courses get hired faster!
</div>
<div class="text-center get-started">
<a href="src/home.html">
<button class="btn btn-outline-primary">Get Started</button>
</a>
</div>
</section>
<section class="right">
<img
src="./src/media/1.png"
class="img-responsive"
loading="lazy"
alt="WWW"
/>
</section>
</div>
</body>
</html>