-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Learn Sass With BMCC</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<section class="logo">
<h1><a href="#">BMCC</a></h1>
</section>
<section class="navbar-links">
<ul class="nav-items">
<li class="nav-link">Home</li>
<li class="nav-link">About</li>
</ul>
</section>
</nav>
<!-- Main Content -->
<main class="main-content">
<section class="banner">
<section class="banner-focus">
<article class="banner-content">
<h1 class="focus-header">Sass Course</h1>
<p class="focus-desc">Created by <a href="https://github/VladRafli">VladRafli</a> from <a href="https://github.com/BMCCLUB">BMCC</a> for you.</p>
<a href="#" class="focus-button">Learn More</a>
</article>
</section>
</section>
<section class="content">
<header class="content-header">
<h1>Notice!</h1>
</header>
<main class="content-section">
<p>If you style this page same as example, then you finished this course!</p>
<p>Basically, Sass is just CSS, but with more power like programming langguage.</p>
<p>Top example of Sass power is usage of if-else, while and for loop, function. The Sass owned logic is like mixin, etc</p>
<p>For more detailed info about Sass, you can visit their official documentation <a href="https://sass-lang.com/" target="_blank">here!</a></p>
<p>To learn more about Sass, you can find tutorial on youtube</p>
<p>Thanks!</p>
<p>Happy coding!</p>
<p>Sincere, </p>
<p>Rafli Jaskandi, Chief Operation Officer & Front-end Mentor</p>
</main>
</section>
</main>
<!-- Footer -->
<footer class="main-footer">
<p>Created with ❤ by VladRafli from Binus Malang Computer Club.</p>
</footer>
<script src="js/index.js"></script>
</body>
</html>