-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.69 KB
/
Copy pathindex.html
File metadata and controls
44 lines (44 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table border="3px" background="https://images.unsplash.com/photo-1503455637927-730bce8583c0?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80">
<tr>
<th colspan="2">
<h1>What's the Difference?</h1>
</th>
</tr>
<tr>
<td><img src="https://cdn.icon-icons.com/icons2/1488/PNG/512/5352-html5_102567.png"><h1>HTML</h1></td>
<td><h2>Create the structure</h2>
<ul>
<li>Control the layout of the content</li>
<li>Provides structure for the web page design</li>
<li>The fundamental building block of any web page</li>
</ul>
</td>
</tr>
<tr>
<td><img src="https://cdn.freelogovectors.net/wp-content/uploads/2020/04/css-3-logo-768x768.png"><h1>CSS</h1></td>
<td><h2>Stylize the website</h2>
<ul><li>Applies stytle to the webpage elements</li>
<li>Targets various screen sizes to make web pages reponsive</li>
<li>Primarily handles the "look and feel" of a web page</li></ul>
</td>
</tr>
<tr>
<td><img src="https://www.freepnglogos.com/uploads/javascript-png/javascript-logo-transparent-logo-javascript-images-3.png"><h1>Javascript</td>
<td><h2>Increase interactivity</h2>
<ul><li>Adds interactivity to a web page</li>
<li>Handles complex functions and features</li>
<li>Programmatic code which enhances functionality</li></ul></td>
</tr>
</table>
</body>
</html>