-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (125 loc) · 4.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<!DOCTYPE html>
<link rel="stylesheet" href="design-portfolio.css" />
<link
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<body>
<header>
<img
src="./icons/main-logo.svg"
alt="black circle logo"
class="main-logo"
/>
<button class="cta-btn">Free Consultation</button>
</header>
<main>
<section class="hero">
<h1 class="hero__title">Design solutions made easy</h1>
<p class="hero__content">
With over ten years of experience in various design disciplines, I’m
your one-stop shop for your design needs.
</p>
</section>
<section class="solutions">
<div class="solutions__item">
<img src="./icons/graphic-design-shapes.svg" alt="" />
<p>Graphic Design</p>
</div>
<div class="solutions__item">
<img src="./icons/uiux-shapes.svg" alt="" />
<p>UI/UX</p>
</div>
<div class="solutions__item">
<img src="./icons/apps-shapes.svg" alt="" />
<p>Apps</p>
</div>
<div class="solutions__item">
<img src="./icons/illustration-shapes.svg" alt="" />
<p>Illustrations</p>
</div>
<div class="solutions__item">
<img src="./icons/photography-shapes.svg" alt="" />
<p>Photography</p>
</div>
<div class="solutions__item">
<img src="./icons/motion-graphics-shapes.svg" alt="" />
<p>Motion Graphics</p>
</div>
</section>
<section class="designer">
<img
src="./images/avatar-amy.webp"
alt="amy avatar"
class="designer__avatar"
/>
<div class="designer__text">
<h2 class="designer__title">
I’m Amy, and I’d love to work on your next project
</h2>
<p class="designer__content">
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="cta-btn cta-btn--accent">Free Consultation</button>
</div>
</section>
<section class="portfolio">
<h2 class="portfolio__title">My Work</h2>
<div class="carousel">
<div class="carousel__container">
<img src="./images/amy-project-1.png" alt="" />
<img src="./images/amy-project-2.png" alt="" />
<img src="./images/amy-project-3.png" alt="" />
<img src="./images/amy-project-4.png" alt="" />
<img src="./images/amy-project-5.png" alt="" />
</div>
</div>
<div class="carousel__controls">
<button class="carousel__button carousel__button--left">
<img
src="./icons/left-arrow.svg"
alt="left arrow"
class="carousel__arrow"
/>
</button>
<button class="carousel__button carousel__button--right">
<img
src="./icons/right-arrow.svg"
alt="right arrow"
class="carousel__arrow"
/>
</button>
</div>
</section>
<section class="booking">
<div class="booking__div">
<h2 class="booking__title">Book a call with me</h2>
<p class="booking__content">
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="cta-btn cta-btn--accent">Free Consultation</button>
</section>
</main>
<footer>
<img
src="./icons/main-logo.svg"
alt="black circle logo"
class="main-logo"
/>
<button class="cta-btn">Free Consultation</button>
</footer>
<script src="slider.js"></script>
</body>
</html>