-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 2.77 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
<!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>Sass Project</title>
<link rel="stylesheet" href="css/style/style.css">
</head>
<body>
<header id="top">
<div id="hamburger">
<span id="icon_menu">Menu</span>
</div>
<ul class="main_nav">
<li><a href="">Home</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Lessons</a></li>
<li><a href="">Portfolio</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Contact</a></li>
</ul>
</header>
<main id="lead_banner">
<img src="images/banner-1.png"/>
<div class="banner_desc">
<h2>CHECK OUR VIDEO<h2>
<h3>LEARNING IN 6 WEEKS</h3>
</div>
</main>
<section id="services">
<h3 class="title">Services</h3>
<div class="container">
<div class="service_type">
<img src="images/icon-1.png" alt="" />
<a href="#">Recording</br> services</a>
</div>
<div class="service_type">
<img src="images/icon-2.png" alt="" />
<a href="#">Get a printed</br> Certificate</a>
</div>
<div class="service_type">
<img src="images/icon-3.png" alt="" />
<a href="#">Lessons via</br> Skype</a>
</div>
</div>
</section>
<section id="lesson">
<img src="images/banner-2.png" class="banner_2" alt="" />
<div class="lessons_desc">
<h2>OUR LESSONS</h2>
<h3>ARE EASY</h3>
<p>LOREM IPSUM DOLOR SIT AMET, CONSECTETUR ADIPISCING ELIT</p>
<p>LOREM IPSUM DOLOR SIT AMET, CONSECTETUR ADIPISCING ELIT</p>
<p>LOREM IPSUM DOLOR SIT AMET, CONSECTETUR ADIPISCING ELIT</p>
</div>
</section>
<footer id="projects">
<h3 class="title">Project</h3>
<div class="project_container">
<img src="https://via.placeholder.com/300.png/09f/fff " alt="" />
<img src="https://via.placeholder.com/300.png/09f/fff " alt="" />
<img src="https://via.placeholder.com/300.png/09f/fff " alt="" />
<img src="https://via.placeholder.com/300.png/09f/fff " alt="" />
<img src="https://via.placeholder.com/300.png/09f/fff " alt="" />
<img src="https://via.placeholder.com/300.png/09f/fff " alt="" />
<img src="https://via.placeholder.com/300.png/09f/fff " alt="" />
<img src="https://via.placeholder.com/300.png/09f/fff " alt="" />
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>