-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (93 loc) · 3.62 KB
/
index.html
File metadata and controls
97 lines (93 loc) · 3.62 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Masters</title>
<link rel="stylesheet" href="base_styles.css">
<link rel="stylesheet" href="flexbox_styles.css">
</head>
<body>
<header>
<div class="logo">CSS Masters</div>
<nav>
<a href="#" class="nav-link">Properties</a>
<a href="#" class="nav-link">Selectors</a>
<a href="#" class="nav-link">Layouts</a>
<a href="#" class="nav-link">Resources</a>
</nav>
<div class="user-actions">
<button>Try Editor</button>
<button>Examples</button>
</div>
</header>
<main>
<section class="hero">
<h1>Master Modern CSS</h1>
<p>From fundamentals to advanced layouts - learn CSS the right way</p>
</section>
<section class="card-container">
<div class="card">
<img src="https://placehold.co/150x150/2563eb/ffffff/png?text=Flex" alt="Flexbox">
<h3>Flexbox Layout</h3>
<p>Master modern layout techniques with CSS Flexbox for responsive and dynamic designs.</p>
<button>Start Learning</button>
</div>
<div class="card">
<img src="https://placehold.co/150x150/7c3aed/ffffff/png?text=Grid" alt="Grid">
<h3>CSS Grid</h3>
<p>Create complex grid-based layouts with CSS Grid's powerful two-dimensional system.</p>
<button>Start Learning</button>
</div>
<div class="card">
<img src="https://placehold.co/150x150/db2777/ffffff/png?text=Animations" alt="Animations">
<h3>Animations</h3>
<p>Keep customers focused on your websites with captivating CSS animations and transitions.</p>
<button>Start Learning</button>
</div>
</section>
<section class="features">
<div class="feature-item">
<span class="feature-icon">📱</span>
<h3>Responsive Design</h3>
<p>Learn to create layouts that work on any device</p>
</div>
<div class="feature-item">
<span class="feature-icon">🎨</span>
<h3>Modern Styling</h3>
<p>Master CSS variables, gradients, and modern selectors</p>
</div>
<div class="feature-item">
<span class="feature-icon">⚡</span>
<h3>Performance</h3>
<p>Optimize your CSS for better website performance</p>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h4>Learning Path</h4>
<p>Follow our structured curriculum from basics to advanced CSS concepts.</p>
</div>
<div class="footer-section">
<h4>Resources</h4>
<a href="#">CSS Documentation</a>
<a href="#">Practice Exercises</a>
<a href="#">Code Examples</a>
</div>
<div class="footer-section">
<h4>Community</h4>
<div class="social-links">
<a href="#">Discord</a>
<a href="#">CodePen</a>
<a href="#">GitHub</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 CSS Masters. Learn. Code. Create.</p>
</div>
</footer>
</body>
</html>