-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (81 loc) · 3.19 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
<!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="./assets/favicon-32x32.png">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="./css/reset.css">
<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">
<title>Frontend Mentor | Single-page design portfolio</title>
</head>
<body>
<nav>
<img class="logo" src="assets/logo.svg" alt="weird circle logo" />
<button class="consultation" type="button" >Free Consultation</button>
</nav>
<section class="intro">
<h1>Design solutions made easy</h1>
<p>With over ten years of experience in various design disciplines, I’m your one-stop shop for your design needs.</p>
</section>
<section class="slides-grid">
<div class="grid-slide-1 grid-slide">
<img src="./assets/pattern-graphic-design.svg" alt="abstract shapes" />
<span>Graphic Design</span>
</div>
<div class="grid-slide-2 grid-slide">
<img src="./assets/pattern-ui-ux.svg" alt="abstract shapes" />
<span>UI/UX</span>
</div>
<div class="grid-slide-3 grid-slide">
<img src="./assets/pattern-apps.svg" alt="abstract shapes" />
<span>Apps</span>
</div>
<div class="grid-slide-4 grid-slide">
<img src="./assets/pattern-illustrations.svg" alt="abstract shapes" />
<span>Illustrations</span>
</div>
<div class="grid-slide-5 grid-slide">
<img src="./assets/pattern-photography.svg" alt="abstract shapes" />
<span>Photography</span>
</div>
<div class="grid-slide-6 grid-slide">
<img src="./assets/pattern-motion-graphics.svg" alt="abstract shapes" />
<span>Motion Graphics</span>
</div>
</section>
<section class="amy">
<div class="amy-photo">
<img src="./assets/image-amy.webp" alt="client photo" />
</div>
<div class="amy-description">
<h2>
I’m Amy, and I’d love to work on your next project
</h2>
<p>
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="consultation" type="button">Free Consultation</button>
</div>
</section>
<section class="my-work">
<h2>My Work</h2>
<!-- Here's where that slider thing goes -->
</section>
<section class="book-a-call">
<h2>Book a call with me</h2>
<p>
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>
<button class="consultation" type="button">Free Consultation</button>
</section>
<nav>
<img class="logo" src="assets/logo.svg" alt="weird circle logo" />
<button class="consultation" type="button" >Free Consultation</button>
</nav>
</body>
</html>