-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_box_4.html
More file actions
67 lines (67 loc) · 3.33 KB
/
css_box_4.html
File metadata and controls
67 lines (67 loc) · 3.33 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
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
<!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>Box Model | Vijay CSS</title>
<link rel="stylesheet", href="css/style.css">
<link rel="stylesheet", href="css/css_box_4.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"> <!--Import more fonts from font-awesome-->
</head>
<body>
<header>
<h1>CSS Box Model</h1>
</header>
<main class="main-container">
<div class="overview-container">
<h2>Overview</h2>
<p>
This page is about CSS box models. The box model is used for designs and layout of a webpage.
This page is about CSS box models. The box model is used for designs and layout of a webpage.
This page is about CSS box models. The box model is used for designs and layout of a webpage.
This page is about CSS box models. The box model is used for designs and layout of a webpage.
</p>
</div>
<div class="container">
<h2>Container</h2>
<p>
This is a random container with 4 different border styles on each side.
This is a random container with 4 different border styles on each side.
This is a random container with 4 different border styles on each side.
This is a random container with 4 different border styles on each side.
</p>
</div>
<div class="outline-container">
<h2>Outline Container</h2>
<p>
This is a container containing the main 'solid' border and an outer/outline 'dotted' border.
This is a container containing the main 'solid' border and an outer/outline 'dotted' border.
This is a container containing the main 'solid' border and an outer/outline 'dotted' border.
This is a container containing the main 'solid' border and an outer/outline 'dotted' border.
</p>
</div>
<div class="offset-container">
<h2>Outline Offset Container</h2>
<p>
This is a container containing a 'dotted' border and an offset of 5 pixels.
This is a container containing a 'dotted' border and an offset of 5 pixels.
This is a container containing a 'dotted' border and an offset of 5 pixels.
This is a container containing a 'dotted' border and an offset of 5 pixels.
</p>
</div>
<div class="circle-container">
<h2>Circle</h2>
<p>
Below is a circle created using a div and CSS.
Below is a circle created using a div and CSS.
Below is a circle created using a div and CSS.
Below is a circle created using a div and CSS.
</p>
<div class="circle"></div>
</div>
</main>
<footer>
</footer>
</body>
</html>