-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (88 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="images/Logo.png" type="image/x-icon" />
<title>Challenges | Stephen Buley</title>
</head>
<body>
<div class="container">
<div class="header">
<h1 class="title">Web Dev Coding Challenges</h1>
<p class="paragraph">
Completed Challenges from
<a target="_blank" href="https://www.frontendmentor.io/"
>Frontend Mentor</a
>
using HTML, CSS, and JS
</p>
</div>
<main>
<ul>
<li data-name="faq">
<a data-name="faq" href="./faq-accordion-card/index.html"
>FAQ Accordion Card</a
>
</li>
<li data-name="social">
<a data-name="social" href="./social-media-dashboard/index.html"
>Social Media Dashboard</a
>
</li>
<li data-name="testimonial">
<a
data-name="testimonial"
href="./testimonials-grid-section/index.html"
>Testimonials Grid</a
>
</li>
<li data-name="profile">
<a data-name="profile" href="./profile-card-component/index.html"
>Profile Card Component</a
>
</li>
</ul>
<div class="images">
<img
src="images/portfolio.png"
alt="portfolio"
class="image active portfolio"
/>
<img
src="images/faq-accordion-card.png"
alt="FAQ Accordion Card"
class="image faq"
/>
<img
src="images/social-media-dashboard.png"
alt="Social Media Dashboard"
class="image social"
/>
<img
src="images/testimonials-grid-section.png"
alt="Testimonials Grid"
class="image testimonial"
/>
<img
src="images/profile-card-component.png"
alt="Profile Card Component"
class="image profile"
/>
</div>
</main>
<p class="footer">
View my full portfolio at
<a target="_blank" href="https://stephenbuley.com">stephenbuley.com</a>
</p>
</div>
</body>
<script src="./index.js"></script>
</html>