-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (114 loc) · 5.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Institutional Website</title>
<!-- Reset CSS to normalize browser styles -->
<link rel="stylesheet" href="css/reset.css">
<!-- Custom styles for the website -->
<link rel="stylesheet" href="css/styles.css">
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
<div class="container">
<!-- Banner Section -->
<header>
<div class="banner">
<!-- Company Logo and Title -->
<div class="box-container">
<div class="box-background"></div>
<div class="box-banner-title">
<h1>DataWorld Development Agency</h1>
<p>Building your digital future</p>
</div>
</div>
<!-- Company Info Section -->
<div class="company-info-container">
<div class="company-info-background"></div>
<div class="company-info-titlebox">
<!-- Welcome Message -->
<h2>Welcome to our website</h2>
<!-- Company Introduction -->
<p>At DataWorld Development Agency, we're dedicated to crafting innovative solutions tailored to your needs. Our team of experts is committed to delivering excellence in every project, ensuring your digital success.</p>
</div>
</div>
</div>
</header>
<!-- Services Section -->
<section>
<div class="services-container">
<!-- Service Box 1: Project Management -->
<div class="service-box">
<div class="service-title" id="gerenciamento-box">
<p>Project Management</p>
</div>
<div class="service-description">
<h3 id="gerenciamento-title">Optimize your projects</h3>
<p>Our project management services help you streamline processes, reduce costs, and achieve your goals effectively.</p>
</div>
</div>
<!-- Service Box 2: Development -->
<div class="service-box">
<div class="service-title" id="dev-box">
<p>Development</p>
</div>
<div class="service-description">
<h3 id="dev-title">Turn your ideas into reality</h3>
<p>Our skilled developers bring your concepts to life with innovative solutions and cutting-edge technologies.</p>
</div>
</div>
<!-- Service Box 3: UX/UI Design -->
<div class="service-box">
<div class="service-title" id="design-box">
<p>UX/UI Design</p>
</div>
<div class="service-description">
<h3 id="design-title">Create captivating experiences</h3>
<p>Enhance user satisfaction and engagement with our intuitive and visually appealing design solutions.</p>
</div>
</div>
</div>
</section>
<!-- About the Company Section -->
<div class="footer-container">
<section>
<div class="about-container">
<!-- About Card 1: Secure Infrastructure -->
<div class="about-card">
<i class="fas fa-server"></i>
<p>Secure and reliable infrastructure</p>
</div>
<!-- About Card 2: Experienced Professionals -->
<div class="about-card middle-card">
<i class="fas fa-briefcase"></i>
<p>Experienced professionals</p>
</div>
<!-- About Card 3: Mobile-friendly Solutions -->
<div class="about-card">
<i class="fas fa-tablet-alt"></i>
<p>Mobile-friendly solutions</p>
</div>
</div>
</section>
<!-- Contact Section -->
<footer>
<div class="form-container">
<div class="form-background"></div>
<!-- Contact Form -->
<form action="">
<input type="text" name="name" id="name" placeholder="Name">
<input type="email" name="email" id="email" placeholder="Email">
<textarea name="message" id="message" placeholder="Your message"></textarea>
<input type="submit" class="submit" value="Send">
</form>
</div>
<!-- Copyright Information -->
<div class="copyright">
<p>Copyright 2019 - DataWorld Development Agency</p>
</div>
</footer>
</div>
</div>
</body>
</html>