-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholtable.html
82 lines (75 loc) · 2.32 KB
/
oltable.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
<!-- 6. Create an ordered list of the full stack web development tech stack HTML, CSS, and JS. For each tech
stack, create a table that lists the tech stack name, its primary use cases, and some key features or
benefits. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech Stack</title>
</head>
<style>
ol {
display: flex;
flex-direction: column;
gap: 20px;
}
</style>
<body>
<ol>
<li><b>HTML</b></li>
<table border="1">
<tr>
<th>Primary Use Cases</th>
<th>Key Features/Benefits</th>
</tr>
<tr>
<td>Building the stucture and content of web pages.</td>
<td>
<ul>
<li>Standard Markup Language</li>
<li>Simple and easy to learn</li>
<li>Widely supported by all browsers</li>
</ul>
</td>
</tr>
</table>
<li><b>CSS</b></li>
<table border="1">
<tr>
<th>Primary Use Cases</th>
<th>Key Features/Benefits</th>
</tr>
<tr>
<td>Styling and controlling the layout of web pages.</td>
<td>
<ul>
<li>Separates content from presentation</li>
<li>Enables responsive design</li>
<li>Offers a wide range of styling options</li>
</ul>
</td>
</tr>
</table>
</li>
<li><b>JavaScript</b></li>
<table border="1">
<tr>
<th>Primary Use Cases</th>
<th>Key Features/Benefits</th>
</tr>
<tr>
<td>Adding interactivity to web pages, building web applications, and server-side scripting.</td>
<td>
<ul>
<li>Client-side scripting for dynamic content</li>
<li>Wide range of libraries and frameworks</li>
<li>Asynchronous programming capabilities</li>
</ul>
</td>
</tr>
</table>
</li>
</ol>
</body>
</html>