-
Notifications
You must be signed in to change notification settings - Fork 0
/
Margin.html
42 lines (35 loc) · 2.56 KB
/
Margin.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
<!--
Give me a brief introduction o HTMl?
Syntax of HTML?
Ans -> HTML is a hyper text markup language. It is used to create web pages. It is a standard markup language that is used to create web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets. HTML tags describe the structure of the web page. HTML is a markup language that is used by the browser to manipulate text, images and other content to display it in required format. HTML is a markup language that is used to create web pages. It is a standard markup language that is used to create web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets. HTML tags describe the structure of the web page. HTML is a markup language that is used by the browser to manipulate text, images and other content to display it in required format.
What is the difference between HTML and HTML5?
Ans -> HTML is a markup language that is used to create web pages. It is a standard markup language that is used to create web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets. HTML tags describe the structure of the web page. HTML is a markup language that is used by the browser to manipulate text, images and other content to display it in required format. HTML is a markup language that is used to create web pages. It is a standard markup language that is used to create web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets. HTML tags describe the structure of the web page. HTML is a markup language that is used by the browser to manipulate text, images and other content to display it in required format.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Margin in Bootstrap</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container">
<div class="row border">
<div class="col-md-4 ml-auto bg-secondary p-2">Lorem.</div>
<div class="col-md-3 bg-success p-2">Lorem.</div>
</div>
<div class="row border mt-2">
<div class="col-4 m-auto bg-danger p-2">Lorem.</div>
</div>
<div class="row border mt-2">
<div class="col-4 m-auto bg-primary ">Lorem.</div>
</div>
</div>
</body>
</html>