-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Styled Web Page</title>
<!-- Linking External Stylesheet -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Our Web Page</h1>
</header>
<p>This is a regular paragraph on the webpage.</p>
<p class="alternate">This is an alternate paragraph with a different background color.</p>
<p>This is another regular paragraph.</p>
<p class="alternate">This is another alternate paragraph with a different background color.</p>
<table>
<thead>
<tr>
<th>Product ID</th>
<th>Product Name</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Product A</td>
<td>$10</td>
</tr>
<tr>
<td>2</td>
<td>Product B</td>
<td>$15</td>
</tr>
<tr>
<td>3</td>
<td>Product C</td>
<td>$20</td>
</tr>
</tbody>
</table>
<footer>
<p>For more information, visit <a href="https://example.com">our website</a>.</p>
</footer>
</body>
</html>