-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbasic.html
More file actions
70 lines (65 loc) · 1.74 KB
/
basic.html
File metadata and controls
70 lines (65 loc) · 1.74 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
70
<!DOCTYPE html>
<html>
<head>
<title>Basic Site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to the Basic Site</h1>
</header>
<main>
<section>
<h2>About Us</h2>
<p>This is a paragraph about our company.</p>
</section>
<section>
<h2>Our Services</h2>
<div class="card">
<h3>Service One</h3>
<p>Description of service one.</p>
</div>
<div class="card">
<h3>Service Two</h3>
<p>Description of service two.</p>
</div>
</section>
<section>
<h2>Data Table</h2>
<table>
<thead>
<tr>
<th>Item</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Apples</td>
<td>50</td>
<td>$0.50</td>
</tr>
<tr>
<td>Bananas</td>
<td>30</td>
<td>$0.30</td>
</tr>
<tr>
<td>Cherries</td>
<td>20</td>
<td>$1.00</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Contact Us</h2>
<button id="contact-button">Click to Contact</button>
</section>
</main>
<footer>
<p>© 2024 Basic Site</p>
</footer>
</body>
</html>