-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
176 lines (168 loc) · 5.95 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Frontend Mentor | Single-page design portfolio</title>
<link rel="stylesheet" href="css/styles.css" />
<!-- Google Fonts -->
<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=Plus+Jakarta+Sans:wght@500;700&display=swap"
rel="stylesheet"
/>
<!-- Swiper -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"
/>
<script
src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"
defer
></script>
<!-- JS -->
<script src="main.js" defer></script>
</head>
<body class="preload">
<header class="header">
<div class="container flex flex-row text-center">
<a href="#">
<img src="images/logo.svg" alt="" />
<div class="sr-only">home</div>
</a>
<button class="button" data-type="primary">Free Consultation</button>
</div>
</header>
<main>
<section class="top-section | container">
<div class="flow text-center">
<h1 class="heading-1">Design solutions made easy</h1>
<p class="body-text">
With over ten years of experience in various design disciplines, I’m
your one-stop shop for your design needs.
</p>
</div>
<div class="tile-grid">
<div class="tile bg-blue" data-size="large">
<img
src="images/pattern-graphic-design.svg"
alt=""
class="tile__img"
/>
<span class="tile__text">Graphic Design</span>
</div>
<div class="tile bg-orange">
<img src="images/pattern-ui-ux.svg" alt="" class="tile__img" />
<span class="tile__text">UI/UX</span>
</div>
<div class="tile bg-pink">
<img src="images/pattern-apps.svg" alt="" class="tile__img" />
<span class="tile__text">Apps</span>
</div>
<div class="tile bg-light-red" data-size="wide">
<img
src="images/pattern-illustrations.svg"
alt=""
class="tile__img"
/>
<span class="tile__text">Illustrations</span>
</div>
<div class="tile bg-cyan" data-size="wide">
<img
src="images/pattern-photography.svg"
alt=""
class="tile__img"
/>
<span class="tile__text">Photography</span>
</div>
<div class="tile bg-purple" data-size="wide">
<img
src="images/pattern-motion-graphics.svg"
alt=""
class="tile__img"
/>
<span class="tile__text">Motion Graphics</span>
</div>
</div>
</section>
<section class="bio-section | section container">
<img class="bio-section__img" src="images/image-amy.webp" alt="Amy" />
<div class="flow">
<h2 class="heading-2">
I’m Amy, and I’d love to work on your next project
</h2>
<p class="body-text">
I love working with others to create beautiful design solutions.
I’ve designed everything from brand illustrations to complete mobile
apps. I’m also handy with a camera!
</p>
<button class="button" data-type="secondary">
Free Consultation
</button>
</div>
</section>
<!-- Carousel -->
<section class="carousel-section | flow text-center">
<h2 class="heading-3">My Work</h2>
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="images/image-slide-1.jpg" alt="" />
</div>
<div class="swiper-slide">
<img src="images/image-slide-2.jpg" alt="" />
</div>
<div class="swiper-slide">
<img src="images/image-slide-3.jpg" alt="" />
</div>
<div class="swiper-slide">
<img src="images/image-slide-4.jpg" alt="" />
</div>
<div class="swiper-slide">
<img src="images/image-slide-5.jpg" alt="" />
</div>
</div>
</div>
<div class="button-controls">
<button class="button button--control prev" data-type="primary">
<img src="images/icon-arrow-left.svg" alt="" />
<span class="sr-only">prev slide</span>
</button>
<button class="button button--control next" data-type="primary">
<img src="images/icon-arrow-right.svg" alt="" />
<span class="sr-only">next slide</span>
</button>
</div>
</section>
<section
class="booking-section | section container bg-black color-light br-400"
>
<div class="flow">
<h2 class="heading-2 color-light">Book a call with me</h2>
<p class="body-text">
I’d love to have a chat to see how I can help you. The best first
step is for us to discuss your project during a free consultation.
Then we can move forward from there.
</p>
</div>
<button class="button" data-type="secondary">Free Consultation</button>
</section>
</main>
<footer class="footer">
<div class="container flex flex-row text-center">
<a href="#">
<img src="images/logo.svg" alt="" />
<div class="sr-only">home</div>
</a>
<button class="button" data-type="primary">Free Consultation</button>
</div>
</footer>
</body>
</html>