Skip to content

Commit 7577a06

Browse files
authored
Add files via upload
1 parent f7e3bc0 commit 7577a06

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

index.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="description"
8+
content="A curated collection of small HTML & CSS projects, perfect for practicing web design, experimenting with code, and boosting your frontend skills.">
9+
<meta name="keywords" content="HTML, CSS, frontend, code challenges, web design">
10+
<meta name="lang" content="en">
11+
<meta name="author" content="ChampyTech">
12+
<meta property="og:title" content="Small HTML & CSS Projects - Practice Your Frontend Skills">
13+
<meta property="og:description"
14+
content="A curated collection of small HTML & CSS projects, perfect for practicing web design, experimenting with code, and boosting your frontend skills.">
15+
<meta property="og:type" content="website">
16+
<meta property="og:url" content="https://champytech.github.io/Small-HTML-Projects/">
17+
<meta name="twitter:card" content="summary_large_image">
18+
<meta name="twitter:title" content="Small HTML & CSS Projects - Practice Your Frontend Skills">
19+
<meta name="twitter:description"
20+
content="A curated collection of small HTML & CSS projects, perfect for practicing web design, experimenting with code, and boosting your frontend skills.">
21+
<title>Small HTML & CSS Projects</title>
22+
<style>
23+
body {
24+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
25+
margin: 25px;
26+
}
27+
28+
footer {
29+
margin: 100px 0;
30+
}
31+
</style>
32+
</head>
33+
34+
<body>
35+
<h1>Small HTML & CSS Projects - Practice Your Frontend Skills</h1>
36+
<p>A curated collection of small HTML & CSS projects, perfect for practicing web design, experimenting with code,
37+
and boosting your frontend skills.</p>
38+
<p>You can find the entire GitHub repository <a href="https://github.com/ChampyTech/Small-HTML-Projects"
39+
target="_blank">here</a>.</p>
40+
<p>Here is the list of all the pages in the repository. Click on a project to view it live on your browser without
41+
downloading anything. Try recreating them to practice your frontend skills!</p>
42+
43+
<ul>
44+
<li><a href="./Minimalist Reader/index.html" target="_blank">Minimalist Reader</a></li>
45+
</ul>
46+
47+
<footer>
48+
<p>© <a href="https://github.com/ChampyTech" target="_blank">ChampyTech</a> 2025</p>
49+
</footer>
50+
</body>
51+
52+
</html>

0 commit comments

Comments
 (0)