-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
97 lines (88 loc) · 2.76 KB
/
services.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="Mateo Molina">
<title> Acme Web Desing | Services</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link href="https://fonts.googleapis.com/css?family=Cardo|Montserrat" rel="stylesheet">
</head>
<body>
<header class="brand">
<div class="contenedor">
<div>
<h2> <span>Acme</span> Web Desing</h2>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
</ul>
<button><span class="ion-navicon-round"></span></button>
</nav>
</div>
</header>
<section class="services">
<div class="contenedor">
<ul>
<li>
<h3>Web Desing</h3>
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod,tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
<p>Price $$$$$</p>
</li>
<li>
<h3>Web Maintenance</h3>
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod,tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
<p>Price $$$$$</p>
</li>
<li>
<h3>Web Hosting</h3>
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod,tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
<p>Price $$$$$</p>
</li>
</ul>
<aside class="sidebar">
<h3>Ask away?</h3>
<form>
<article></article>
<input placeholder="Name" type="text" name="Nombre">
</article>
<article>
<input placeholder="Email" type="email" name="correo">
</article>
<article>
<textarea placeholder="Message" type="text" name="mensaje"></textarea>
</article>
<button>Send</button>
</form>
</aside>
</div>
</section>
<section class="newsletter">
<div class="contenedor">
<article>
<ul class="social">
<li><a href="#"><span class="ion-social-instagram-outline"></span></a></li>
<li><a href="#"><span class="ion-social-googleplus-outline"></span></a></li>
<li><a href="#"><span class="ion-social-twitter"></span></a></li>
<li><a href="#"><span class="ion-social-facebook"></span></a></li>
</ul>
</article>
<article class="formu">
<h2> Subscribe to our Newsletter</h2>
<form>
<input type="email" placeholder="Enter Email">
<button type="Submit" class="Btn1">Subscribe</button>
</form>
</article>
</div>
</section>
<footer class="footer">
<p>Acme Web Desing, © 2017</p>
</footer>
</body>
</html>