-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (133 loc) · 6.5 KB
/
index.html
File metadata and controls
140 lines (133 loc) · 6.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/responsive.css" />
<link rel="icon" href="assets/images/favicon/circle-icon.png" type="image" />
<title>Circle Agency - Home</title>
</head>
<body>
<div class="container-section no-margin-top">
<!-- Header Component (Injected) -->
<div class="header-component">
</div>
</div>
<main>
<div class="container-section">
<section class="hero-section">
<section class="hero-content">
<h1>Empower your Business with stunning desing!</h1>
<p>Circle is a digital design and development studio.
We design and develop astonishing websites and mobile apps.</p>
<a href="#newsletter" class="btn1">Get in touch</a>
<a href="#projects" class="btn2">See our work</a>
</section>
<section class="hero-image">
<div class="person-wrapper">
<img id="person" src="assets/images/hero-section/hero-image.png" alt="img-person">
<img class="floating-card" id="card-1" src="assets/images/hero-section/card-1.png"
alt="img-card-1">
<img class="floating-card" id="card-2" src="assets/images/hero-section/card-2.png"
alt="img-card-2">
</div>
</section>
</section>
</div>
<div class="container-section">
<section class="logos-section">
<div class="logos-container">
<img class="logo" src="./assets/images/logos/airbnb-logo.svg" alt="airbnb-logo" />
<img class="logo" src="./assets/images/logos/google-logo.svg" alt="google-logo" />
<img class="logo" src="./assets/images/logos/microsoft-logo.svg" alt="microsoft-logo" />
<img class="logo" src="./assets/images/logos/fedex-logo.svg" alt="fedex-logo" />
<img class="logo" src="./assets/images/logos/amazon-logo.svg" alt="amazon-logo" />
</div>
</section>
</div>
<div class="container-section">
<!-- Recent Projects Component (Dynamic & Inyected) -->
<section class="projects-section-component" id="other-projects">
<h2>Recent Projects</h2>
<div class="projects-container">
</div>
</section>
</div>
<div class="container-section">
<section class="testimonial-section">
<div class="testimonial-container">
<h2>Hear what our clients have to say</h2>
<q>Circle helped us through every stage of our startup.
We really enjoyed working with you.</q>
<div class="person-testimonial">
<img src="assets/images/testimonial-section/profile.png" alt="Kistin-Watson">
<div class="text-container">
<p class="name-testimonial">Kristin Watson</p>
<p class="web-testimonial">Booking.com</p>
</div>
</div>
</div>
<div class="emojis-container">
<img class="emoji-1" src="assets/images/testimonial-section/memoji-1.png" alt="emoji-1" />
<img class="emoji-2" src="assets/images/testimonial-section/memoji-2.png" alt="emoji-2" />
<img class="emoji-3" src="assets/images/testimonial-section/memoji-3.png" alt="emoji-3" />
<img class="emoji-4" src="assets/images/testimonial-section/memoji-4.png" alt="emoji-4" />
</div>
</section>
</div>
<div class="container-section">
<section class="services-section" id="services">
<h2>Our Service</h2>
<div class="services-container">
<div class="service-card">
<div class="circle-form">
<img src="./assets/images/services-section/icons/1.svg" alt="UI-Design" />
</div>
<h3>User inteface design</h3>
<p>Circle provides you with a stunning user interface design that is accessible to everyone.</p>
<a href="#">Learn more</a>
</div>
<div class="service-card">
<div class="circle-form">
<img src="./assets/images/services-section/icons/2.svg" alt="UX-Design" />
</div>
<h3>User experience design</h3>
<p>Circle always focuses on delivering the best user experience to your customers.</p>
<a href="#">Learn more</a>
</div>
<div class="service-card">
<div class="circle-form">
<img src="./assets/images/services-section/icons/3.svg" alt="App-Dev" />
</div>
<h3>Application development</h3>
<p>We develop high-quality mobile and web applications using the latest technology stack.</p>
<a href="#">Learn more</a>
</div>
</div>
</div>
</section>
<div class="container-section">
<section class="newsletter-section" id="newsletter">
<h2>Do you have any questions?</h2>
<h3>Let us help you!</h3>
<form id="newsletter-mail">
<input type="email" name="email" placeholder="Enter your email" required />
<button class="suscribe-button" type="submit">Suscribe</button>
</form>
</section>
</div>
<!-- Scroll Up Component (Injected) -->
<section class="scroll-up-component">
</section>
</main>
</div>
<div class="container-section margin-bottom">
<!-- Footer Component (Injected) -->
<div class="footer-component">
</div>
</div>
<script src="./js/projects.js"></script>
<script src="./js/components.js"></script>
</body>
</html>