-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (77 loc) · 3.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>contact-small</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:700,400|Cardo:400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="main">
<div class="header-wrapper">
<div class="header">
<span class="logo">
pixons
</span>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Expertise</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Contact</a></li>
</ul>
<h1>Get in Touch</h1>
<p>Looking for a partner for an upcoming digital project?<br>
We'd love to hear from you.</p>
</div>
</div>
<div class="content-wrapper">
<div class="content">
<h1>Start Your Project</h1>
<p>We don’t just do the development for you, we take the time to get to know
you and understand your needs and goals as part of our approach.</p>
<ul class="all_contact">
<li><a class="contact_first" href="tel:+13432342345">+1 343 234 23 45</a></li>
<li><a class="contact_second" href="mailto:info@pixons.com">info@pixons.com</a></li>
<li><a class="contact_third" href="skype:skype.pixons?userinfo">skype.pixons</a></li>
</ul>
<form action="#" class="message">
<fieldset>
<p class="title_mess">SEND US A MESSAGE</p>
<div class="partOne">
<div class="row">
<input type="text" class="input-text" placeholder="First Name">
</div>
<div class="row">
<input type="email" class="input-text error" placeholder="somethinghere@"> <span class="error-span">Here the title of the error</span>
</div>
</div>
<div class="partTwo">
<div class="row">
<input type="text" class="input-text" placeholder="Last Name">
</div>
<div class="row">
<input type="tel" class="input-text" placeholder="Phone">
</div>
</div>
<div class="row">
<textarea name="" id="" cols="30" rows="10" class="textarea-default" placeholder="Your needs*"></textarea>
</div>
<div class="row">
<input type="submit" class="submit" value="Get Started">
</div>
<div class="yellow">
<p>Validation errors occurred. Please confirm the fields and submit it again.</p>
</div>
<div class="green">
<p>Validation errors occurred. Please confirm the fields and submit it again.</p>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</body>
</html>