-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp-Design.html
154 lines (141 loc) · 5.92 KB
/
App-Design.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Designo | Front End Mentor</title>
<link rel="shortcut icon" type="image/png" href="/images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="overflow">
<div class="overflow_text">
<a href="About.html">our company</a>
<a href="Locations.html">locations</a>
<a href="Contact.html">contact</a>
</div>
</div>
<div class="wrapper" style="max-width: 1280px;
margin: 0 auto; position: relative;">
<div class="cloud-1" style="top: 15%;">
</div>
<!-- <div class="cloud-2">
</div> -->
<header>
<nav class="header flex flex-jc-sb pm-aside">
<div class="header_logo"><a href="index.html"><img src="/images/shared/desktop/logo-dark.png"
alt="logo-designo"></a>
</div>
<div class="header_links">
<a href="About.html">our company</a>
<a href="Locations.html">locations</a>
<a href="Contact.html">contact</a>
</div>
<div class="header_hamburger">
</div>
</nav>
</header>
<div class="design-label">
<div class="design-label-text">
<h1>App Design</h1>
<p>Our mobile designs bring intuitive digital solutions to your customers right at their fingertips.</p>
</div>
</div>
<section class="cards">
<a href="#" class="card">
<div class="card-bgc airfilter"></div>
<div class="card-text">
<h3>Airfilter</h3>
<p>Solving the problem of poor indoor air quality by filtering the air</p>
</div>
</a>
<a href="#" class="card">
<div class="card-bgc eyecam"></div>
<div class="card-text">
<h3>Eyecam</h3>
<p>Product that lets you edit your favorite photos and videos at any time</p>
</div>
</a>
<a href="#" class="card">
<div class="card-bgc faceit"></div>
<div class="card-text">
<h3>Faceit</h3>
<p>Get to meet your favorite internet superstar with the faceit app</p>
</div>
</a>
<a href="#" class="card">
<div class="card-bgc todo"></div>
<div class="card-text">
<h3>Todo</h3>
<p>A todo app that features cloud sync with light and dark mode</p>
</div>
</a>
<a href="#" class="card last-card">
<div class="card-bgc loopstudios"></div>
<div class="card-text">
<h3>Loopstudios</h3>
<p>A VR experience app made for Loopstudios</p>
</div>
</a>
</section>
<div class="cta-design">
<a href="Web-Design.html" class="cta-design-item" id="web-bgc">
<h2>Web Design</h2>
<p>view projects</p>
</a>
<a href="Graphic-Design.html" class="cta-design-item">
<h2>Graphic Design</h2>
<p>view projects</p>
</a>
</div>
<section class="git">
<div class="git_text">
<div class="git_text_wrapper">
<p class="h1">Let’s talk about your project</p>
<p>Ready to take it to the next level? Contact us today and find out how our expertise can help your
business grow.</p>
</div>
<a href="Contact.html" class="button">get in touch</a>
</div>
</section>
</div>
<footer class="footer">
<div class="footer_wrapper">
<div class="footer_wrapper_top">
<div class="footer_logo"><a href="index.html"><img src="/images/shared/desktop/logo-light.png"
alt="logo-designo-light-version"></a>
</div>
<div class="footer_info">
<a href="About.html">our company</a>
<a href="Locations.html">locations</a>
<a href="Contact.html">contact</a>
</div>
</div>
<div class="footer_wrapper_bot">
<div class="footer_text">
<div class="footer_text_office">
<p>Designo Central Office</p>
<p>3886 Wellington Street</p>
<p>Toronto, Ontario M9C 3J5</p>
</div>
<div class="footer_text_contact">
<p>Contact Us (Central Office)</p>
<p>P : +1 253-863-8967</p>
<p>M : contact@designo.com</p>
</div>
</div>
<div class="footer_social">
<a href="#"><img src="/images/shared/desktop/icon-facebook.svg" alt=""></a>
<a href="#"><img src="/images/shared/desktop/icon-youtube.svg" alt=""></a>
<a href="#"><img src="/images/shared/desktop/icon-twitter.svg" alt=""></a>
<a href="#"><img src="/images/shared/desktop/icon-pinterest.svg" alt=""></a>
<a href="#"><img src="/images/shared/desktop/icon-instagram.svg" alt=""></a>
</div>
</div>
</div>
</footer>
<script src="/app/js/script.js"></script>
</body>
</html>