-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Development Debugging Exercise</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Flexbox Debugging</h1>
<div class="box">This should be a green box with a black border.</div>
<div class="box" style="padding: 40px;">This should also be a green box with a black border, but with more padding.</div>
<div class="box special">This should be a yellow box with a dotted border.</div>
<div class="flex-container">
<div class="flex-item">Box #1 - This should be to the left of Box #2.</div>
<div class="flex-item">Box #2 - This should be to the right of Box #1.</div>
</div>
<!-- Stretch Goal: Feature Section -->
<section class="feature-section">
<h2>Featured Content</h2>
<div class="feature-item">
<img src="cat.jpg" alt="Feature Image">
<p>This is a feature item with text over an image.</p>
</div>
<!-- Additional featured content -->
</section>
<!-- Stretch Goal: Multi-Column Footer -->
<footer class="footer">
<div class="footer-column">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: 123-456-7890</p>
</div>
<div class="footer-column">
<h3>Follow Us</h3>
<p>Twitter</p>
<p>Facebook</p>
</div>
<div class="footer-column">
<h3>Links</h3>
<p>About Us</p>
<p>Privacy Policy</p>
</div>
</footer>
</div>
</body>
</html>