-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>fCC - Responsive Web Design</title>
</head>
<body>
<div class="about">
<h1>fCC-RWD</h1>
<p>
This is a collection of html+css pages that I made to practice my css.
These projects were made by following freeCodeCamp's excellent
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design">
Responsive Web Design course</a>.
The Guided projects section contains projects that are
provided in the curriculum to introduce various html+css
concepts to learners.
On the other hand, the certification projects sections
contain projects that I've made to pass freeCodeCamp's
rigorous user stories to get through their course.
</p>
</div>
<div>
<div class="button">
<a href="certification/index.html">Certification Projects</a>
</div>
<div class="button">
<a href="guided/index.html">Guided Projects</a>
</div>
<div class="button">
<a href="credits.html">Credits</a>
</div>
<div class="button">
<a href="https://github.com/Bharath314/fCC-RWD">Repository</a>
</div>
<div class="button">
<a href="https://www.freecodecamp.org/certification/ConstantLynx/responsive-web-design">Certificate</a>
</div>
</div>
</body>
</html>