-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
174 lines (121 loc) · 5.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EqualDesigns</title>
<link rel="icon" href="./images/about.jpg">
<link rel="stylesheet" href="./css/style.css">
<!-- box icons -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</script>
</head>
<body>
<header class="header" id="home">
<a href="#" class="logo"><img src="images/about.jpg" alt="" width="100" height="100" /></div></a>
<div class="menu-toggle">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<nav class="navbar">
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#skills">Goals</a>
<a href="#contact">Contact</a>
</nav>
</a>
</a>
</header>
<!-- home section design -->
<section class="home" id="home">
<div class="menu-toggle">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<div class="home-content">
<h1><span>EqualDesigns</span></h1>
<div class="text-animate">
<h3>Digital Designs</h3>
</div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Id molestias voluptas ipsum aperiam recusandae, repellendus deserunt perferendis accusamus corporis saepe. Nisi doloremque, totam perspiciatis distinctio at necessitatibus dolorum! </p>
<div class="btn-box">
<a href="mailto:equaldesigns.nl@gmail.com" class="btn">Let's Talk</a>
</div>
</div>
<div class="home-imageHover"></div>
</section>
<!-- about section design -->
<section class="about" id="about">
<h2 class="heading">About <span>Us</span></h2>
<div class="about-img">
<img src="./images/computer.jpg" alt="">
<span class="circle-spin"></span>
</div>
<div class="about-content">
<h3>Digital Design
& Creative Solutions</h3>
<p>Our team of designers can help you bring your ideas to life to give your new customers a warm welcome.
Our services include Illustrations, Website creations, Logo creations, Visual Identitys, Video editing, Gaming Designs for FiveM, Youtube, Ark and alot more.
We also offer adaptation services, if you need your master design to be adapted into multiple different formats.
</p>
<section class="about" id="about">
<div class="about-img">
<img src="./images/social-media.jpg" alt="">
<span class="circle-spin"></span>
</div>
<div class="about-content">
<h3>Social Media Design & Services</h3>
<p>Any challenge that revolves around digital design just like social media, we will take it head on and smash it out of the park.
Our social media services includes, Advertise designs, Picture optimalisation, Spotify Covers, Video Editing, Social media overlays and alot more.
We also offer adaptation services, if you need your master design to be adapted into multiple different formats for on the instagram pages.
</p>
</section>
<div class="skills-column">
<h3 class="title">Professional Skills</h3>
<div class="skills-box">
<div class="skills-content">
<div class="progress">
<h3>Web Design <span>95%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3>Web Development <span>67%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3>Graphic Design <span>85%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3>SEO Marketing <span>60%</span></h3>
<div class="bar"><span></span></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- footer design -->
<footer class="footer">
<div class="footer-text">
<p>© 2021 - 2023 | EqualDesigns.nl. All rights reserved.</p>
</div>
<div class="footer-iconTop">
<a href="#"><i class='bx bx-up-arrow-alt' ></i></a>
</div>
</footer>
<script src="js/script.js"></script>
</body>
<script>document.addEventListener("DOMContentLoaded", function () {
const menuToggle = document.querySelector(".menu-toggle");
const navbar = document.querySelector(".navbar");
menuToggle.addEventListener("click", function () {
navbar.classList.toggle("active");
});
});
</script>
</html>