-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frontend Friday</title>
<style>
html {
height: 100%;
}
body {
color: rgb(70, 70, 70);
text-align: center;
background: linear-gradient(rgb(198, 214, 255), rgb(255, 234, 223));
}
a {
text-decoration: none;
color: inherit;
}
a:hover {
color: navy;
text-decoration: underline;
}
</style>
</head>
<body>
<h4>Frontend Queens | Frontend Fridays 2.0</h4>
<h1>Frontend Fridays Challenge Solutions</h1>
<br />
<h3>
Challenge-1:
<a href="/T1-Results-summary-component/index.html"
>Result Summary Component</a
>
</h3>
<h3>
Challenge-5:
<a href="/T5-Base-Apparel/index.html">Base Apparel</a>
</h3>
<h3>
Challenge-6:
<a href="/T6-SunnySide-Agency-LandingPage/index.html">SunnySide Agency Landing Page</a>
</h3>
</body>
</html>