-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDifference.html
More file actions
69 lines (60 loc) · 1.88 KB
/
Difference.html
File metadata and controls
69 lines (60 loc) · 1.88 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
68
69
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Difference</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<center><h1>What's the Difference?</h1></center>
<br>
<div class="col container">
<div class="d-flex">
<img src="Images/logo1.png" alt="">
<div class="col">
<h1>HTML</h1>
<p>Hypertext Markup Language</p>
</div>
<div class="col">
<h6>Create the structure</h6>
<p>.Controls the layout of the content</p>
<p>.Provides structure for the web page design </p>
<p>.THe fundamental building block of any web page</p>
</div>
</div>
<hr>
<br>
<div class="d-flex">
<img src="Images/bootstrap2.png" alt="">
<div class="col">
<h1>CSS</h1>
<p>Cascading Style Sheet</p>
</div>
<div class="col">
<h6>Stylize the website</h6>
<p>.Applies style to the web page elements</p>
<p>.Targets various screen sizes to make web pages responsive</p>
<p>.Primariliy handles the "look and feel' of a web page</p>
</div>
</div>
<hr>
<div class="d-flex">
<img src="Images/bootstrap3.png" alt="">
<div class="col">
<h1>Javascript</h1>
<p> </p>
</div>
<div class="col">
<h6>Increase interactivity</h6>
<p>.Adds interactivity to a web page</p>
<p>.Handles complex functions and features</p>
<p>.Programmatic code which enhances functionality</p>
</div>
</div>
</div>
</body>
</html>