-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (143 loc) · 4.7 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ByteRunners | Frontend Mentor Challenges</title>
</head>
<style>
ul {
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
li {
list-style-type: none;
}
ul li a {
display: flex;
flex-direction: column;
}
li a img {
width: auto;
height: 200px;
}
</style>
<body>
<h1>ToDo: design a page for this</h1>
<main>
<section>
<h2>Projects</h2>
<ul>
<!-- the links will be for github pages not local dev -->
<!-- for local, remote frontend-mentor/ from all links -->
<li>
<a href="/frontend-mentor/social-proof-section/index.html"
>Social Proof Section
<img
src="/frontend-mentor/social-proof-section/design/desktop-preview.jpg"
alt="Social Proof Section"
/></a>
</li>
<li>
<a
href="/frontend-mentor/rock-paper-scissors-lizzard-spock/index.html"
>Rock Paper Scissors (& Lizzard and Spock)
<img
src="/frontend-mentor/rock-paper-scissors-lizzard-spock/design/desktop-preview.jpg"
alt="rock-paper-scissors-lizzard-spock"
/></a>
</li>
<li>
<a href="/frontend-mentor/clipboard-landing-page/index.html"
>Clipboard Landing Page
<img
src="/frontend-mentor/clipboard-landing-page/design/desktop-preview.jpg"
alt="clipboard-landing-page"
/>
</a>
</li>
<li>
<a href="/frontend-mentor/single-price-grid-component/index.html"
>Single Price Grid Component
<img
src="/frontend-mentor/single-price-grid-component/design/desktop-preview.jpg"
alt="single-price-grid-component"
/>
</a>
</li>
<li>
<a
href="/frontend-mentor/huddle-landing-page-with-curved-sections/index.html"
>Huddle Landing Page with Curved Sections
<img
src="/frontend-mentor/huddle-landing-page-with-curved-sections/design/desktop-preview.jpg"
alt="huddle-landing-page-with-curved-sections"
/>
</a>
</li>
<li>
<a href="/frontend-mentor/testimonials-grid-section/index.html"
>Testimonials Grid Section
<img
src="/frontend-mentor/testimonials-grid-section/design/desktop-preview.jpg"
alt="testimonials-grid-section"
/>
</a>
</li>
<li>
<a
href="/frontend-mentor/fylo-landing-page-with-two-column-layout/index.html"
>
Fylo Landing Page with Two Column Layout
<img
src="/frontend-mentor/fylo-landing-page-with-two-column-layout/design/desktop-preview.jpg"
alt="fylo-landing-page-with-two-column-layout"
/>
</a>
</li>
<li>
<a href="/frontend-mentor/results-summary-component/index.html">
Results Summary Component
<img
src="/frontend-mentor/results-summary-component/design/desktop-preview.jpg"
alt="results-summary-component"
/>
</a>
</li>
<li>
<a
href="/frontend-mentor/3-column-preview-card-component/index.html"
>
3 Column Preview Card Component
<img
src="/frontend-mentor/3-column-preview-card-component/design/desktop-preview.jpg"
alt="3-column-preview-card-component"
/>
</a>
</li>
<li>
<a href="/frontend-mentor/four-card-feature-section/index.html">
Four Card Feature Section
<img
src="/frontend-mentor/four-card-feature-section//design/desktop-preview.jpg"
alt="four-card-feature-section/"
/>
</a>
</li>
<li>
<a
href="/frontend-mentor/blogr-landing-page-tailwindcss/index.html"
>
Blogr Landing Page
<img
src="/frontend-mentor/blogr-landing-page-tailwindcss//design/desktop-preview.jpg"
alt="blogr-landing-page-tailwindcss/"
/>
</a>
</li>
</ul>
</section>
</main>
</body>
</html>