-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.74 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="assests/stylesheet/style.css">
</head>
<body>
<header class="hdr">
<nav>
<a href="index.html" visited>HOME</a>
<a href="blog.html">Blog</a>
</nav>
</header>
<main>
<div class="wrapper">
<!-- section-1 starts here -->
<section>
<h1>The Box Model,Box Sizing, and Box Shadow</h1>
<h2>Exercise One</h2>
<div class="box"></div>
<div class="contain">
<span class="circle-1"></span>
<span>#99D8CA</span>
<span class="circle-2"></span>
<span>#0D1430</span>
<span class="circle-3"></span>
<span>#90FFA9</span>
<span class="circle-4"></span>
<span>#5873E2</span>
</div>
</section>
<hr>
<!-- section-2 starts here -->
<section class="mysec">
<h2>Exercise Two</h2>
<div class="main">
<div class="div1"></div>
<div class="div1"></div>
<div class="div1"></div>
</div>
<hr>
<div class="main">
<div class="mydiv1"></div>
<div class="mydiv1"></div>
<div class="mydiv1"></div>
</div>
</section>
</div>
</main>
</body>
</html>