-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnderstanding Sass.html
More file actions
40 lines (40 loc) · 1.38 KB
/
Understanding Sass.html
File metadata and controls
40 lines (40 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Sass Practice</title>
<link href="https://fonts.googleapis.com/css?family=Bahianita&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Dancing+Script:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="Working.css">
</head>
<body>
<div class="container">
<header class="box-1">
<div class="a">
<h1 class="font">Experimentation on Box-1</h1>
<article><strong>{New Things to try</strong></article>
<button class="click">Read More</button>
</div>
</header>
<section class="box-2">
<div class="b">
<h2 class="font">Experimentation on Box-2</h2>
<article><strong>Trying things</strong></article>
<button class="click">Click me</button>
</div>
</section>
<footer class="box-3">
<div class="c">
<h3 class="font">Experimentation on Box-3</h3>
<article><strong>Love Practicing</strong></article>
<button class="click">Explore</button>
<!-- <ul class="block"> -->
<!-- <li>Home</li> -->
<!-- </ul> -->
</div>
</footer>
</div>
</body>
</html>