-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS-box-model.html
96 lines (84 loc) · 3.13 KB
/
CSS-box-model.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Box Model</title>
<style>
.container {
margin: 0 auto;
padding-left: 30px;
padding-right: 30px;
width: 960px;
}
h1, h3, h4, h5, p {
margin-bottom: 22px;
}
.hero {
padding: 22px 80px 66px 80px;
}
div {
background-color: lightblue;
width: 200px;
padding: 25px;
border: 25px solid navy;
float: right;
}
</style>
</head>
<body>
<header style="text-align: center;">
<h3 style="color: brown;">CSS Box Model</h3>
<p style="width: 50%; display:inline-block; font-size: larger;"> According to the box model concept, every element on a page is a rectangular box and may have width, height, padding, borders, and margins.
Each part of the box model corresponds to a CSS property: width, height, padding, border, and margin.</p>
</header>
<div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem possimus reiciendis nihil beatae veniam quam! Amet eos perspiciatis, impedit velit et obcaecati odit eaque reprehenderit cupiditate alias, eveniet assumenda tempore!</p>
</div>
<header class="container">
<h1 id="top"><a href="practice.html">Styles Conference</a></h1>
<h3>July 24-26th — Sylhet, BD</h3>
<nav>
<a href="index.html">Home</a>
<a href="speakers.html">Speakers</a>
<a href="schedule.html">Schedule</a>
<a href="venue.html">Venue</a>
<a href="register.html">Register</a>
</nav>
</header>
<section class="container">
<h2>Dedicated to the Craft of Building Websites</h2>
<p>Every year the brightest web designers and front-end developers descend on Sylhet to discuss the latest technologies. Join us this July!</p>
<a href="register.html">Register Now</a>
</section>
<section class="container">
<section class="container">
<h5><a href="speakers.html">Speakers</a></h5>
<h3>World-Class Speakers</h3>
<p>Joining us from all around the world are over twenty fantastic speakers, here to share their stories.</p>
</section>
<section class="container">
<h5><a href="schedule.html">Schedule</a></h5>
<h3>Six Inspiring Days </h3>
<p>He who is not courageous enough to take risks will accomplish nothing in life.So join us for six days</p>
</section>
<section class="container">
<h5><a href="venue.html">Venue</a></h5>
<h3>Sylhet</h3>
<p>Within the heart of Sylhet division</p>
</section>
</section>
<footer class="container">
<small>® Styles Conference</small>
<a href="mailto:md.rr.talukder@gmail.com" target="_blank">Mail Us</a>
<nav>
<a href="index.html">Home</a>
<a href="speakers.html">Speakers</a>
<a href="schedule.html">Schedule</a>
<a href="venue.html">Venue</a>
<a href="register.html">Register</a>
</nav>
<a href="#top">Back to Top</a>
</footer>
</body>
</html>