-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
198 lines (159 loc) · 6.4 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="en">
<head>
<!--Link to bootstrap-->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<!--link to styles-->
<link href="styles.css" rel="stylesheet" type="text/css">
<base href="/week3-IP-Delani-Studio/">
<title>Delani Studio</title>
</head>
<body>
<div class="header-image">
<p class="header-text">
WELCOME <br>
DELANI STUDIO<br>
AMAZING PEOPLE ARE MAKING AMAZING DESIGNS IN A FUN ENVIRONMENT</p>
</div>
<div class="about">
<h1 style="text-align:center">ABOUT US</h1>
<p>
<span>you work with us, you are part of a team of committed collaborators. All aspects of our software
development process are integrated, interactive and agile.
</span>
</p>
<p>
<span>unites design, development and product management to create exceptional products.
</span>
</p>
<p> We start each project by understanding your goals, the user's needs and the product requirements</p>
<p> Then we translate them into effective and elegant solutions.</p>
</div>
<div class="services">
<p class="services-text">
SERVICES<br>
Before we sign a contract or write a line of code our team will spend the necessary time to inderstand your
product vision<br>
The outcome of this scoping session is proposal or high-level statement of work
based on your requirements we can provide a complete offering or just the pieces you need.<br>
</p>
</div>
<div class="container">
<p style="text-align: center;"><strong>WHAT WE DO</strong></p>
<div class="row ">
<div class="col">
<img src="./img/services_icons/design_icon.png" id="design">
<p><strong>DESIGN</strong></p>
</div>
<div class="col">
<img src="img/services_icons/dev_icon.png" id="development">
<p><strong>DEVELOPMENT</strong></p>
</div>
<div class="col">
<img src="img/services_icons/product_icon.png" id="product">
<p><strong>PRODUCT MANAGEMENT</strong></p>
</div>
</div>
<div class="row ">
<div class="col">
<p>
<span class="designp">Our design practice offers a full range of services including
brand
strategy,
interaction and visual design and user experience testing.
</span>
</p>
<p>
<span class="designp">
Throughout your project, our designers create and implement
visual design and workflows, solicit
user feedback and work with you to make sure what gets built is what is needed.
</span>
</p>
</div>
<div class="col">
<p>
<span class="developmentp"> All engineers are fluent in the latest enterprise, mobile and web
development
technologies.
</span>
</p>
<p>
<span class="developmentp"> They collaborate with your team to write, and improve code on a daily
basis,
using proven practices such as test-driven development and pair programming
</span>
</p>
</div>
<div class="col">
<p>
<span class="productp">Planning and development is iterative. Because we are constantly coding and
testing, the
products we
build are always ready to go live.
</span>
</p>
<p>
<span class="productp">
This iterative process allows for changes as business requirements evolve.
</p>
</div>
</div>
</div>
<p>
<div class="container">
<p style="text-align: center;"><strong>PORTFOLIO</strong></p>
<div class="row">
<div class="col">
<img src="img/portfolio/work4.jpg" class="img1">
<div class="text1">Project 1</div>
</div>
<div class="col">
<img src="img/portfolio/work3.jpg">
</div>
<div class="col">
<img src="img/portfolio/work2.jpg">
</div>
<div class="col">
<img src="img/portfolio/work1.jpg">
</div>
</div>
<div class="row">
<div class="col">
<img src="img/portfolio/work5.jpg">
</div>
<div class="col">
<img src="img/portfolio/work6.jpg">
</div>
<div class="col">
<img src="img/portfolio/work7.jpg">
</div>
<div class="col">
<img src="img/portfolio/work8.jpg">
</div>
</div>
<div class="container footer">
<p class="footer-text">CONTACT US</p>
<form id="form2">
<div class="col-md-4">
<label for="fname"></label>
<input type="text" id="fname" name="firstname" placeholder="name.." class="form-control">
</div>
<div class="col-md-4">
<label for="email"></label>
<input type="text" id="email" r name="email" placeholder="email.." class="form-control">
</div>
<div>
<label for="subject"></label>
<textarea id="subject" name="subject" placeholder="Your message here.."
style="height:200px"></textarea>
</div>
<div>
<input type="submit" value="Submit">
</div>
</form>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="js/scripts.js"></script>
</body>
</html>