-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
50 lines (43 loc) · 1.97 KB
/
about.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Welcome to About</title>
</head>
<body>
<header>
<nav>
<aside class="logo"><span style="color: #e8491d;">Corps</span> Web Design</aside>
<ul class="menu">
<li><a href="index.html" class="menu-links">HOME</a></li>
<li><a href="about.html" class="menu-links" id="orange">ABOUT</a></li>
<li><a href="services.html" class="menu-links">SERVICES</a></li>
</ul>
</nav>
</header>
<section class="section-2">
<h3>Subscribe to our Newsletter</h3>
<form action="">
<input type="email" class="email" placeholder="Enter email...">
<input type="submit" class="submit" value="Subscribe">
</form>
</section>
<section class="about">
<article class="article-about">
<h3>About Us</h3>
<p>corps.com began in 2005. After years in the web hosting industry, we realized that it was near impossible for the average Jane or Joe to create their own website. Traditional web hosting services were simply too complicated, time consuming, and expensive to manage.</p>
<p>We created the corps.com Site Builder with the user's perspective in mind. We wanted to offer a platform that would require no coding skills or design experience. We keep it simple, so users can focus on creating an amazing website that reflects their brand.</p>
</article>
<aside class="about-card">
<h3>What We Do</h3>
<p>We develop creative, comprehensive and sustainable website solutions for a future where society can thrive.</p>
</aside>
</section>
<footer>
<p>Corps Web Design, Copyright © 2019</p>
</footer>
</body>
</html>