-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
36 lines (36 loc) · 2.12 KB
/
contact.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Att - Contact</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://file.myfontastic.com/RCHR7rbAhuk35c8fGZrmSo/icons.css">
</head>
<body>
<header>
<nav><a href="index.html" title="Home">Home</a><a href="aboutme.html" title="About Me">About Me</a><a href="index.html">
<figure><img src="images/profile.jpg" alt=""></figure></a><a href="portfolio.html" title="Portfolio">Portfolio</a><a href="contact.html" title="Contact" class="on">Contact</a>
</nav>
</header>
<section id="content">
<section class="contact">
<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, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<ul>
<li><span class="icon-mail-2"></span><span class="text">lennartpagel<span class="icon-at"></span>yahoo.com</span></li>
<li><span class="icon-telephone"></span><span class="text">+545232333</span></li>
</ul>
<form action="">
<input type="text" placeholder="Name" required focus>
<input type="text" placeholder="Email" required>
<textarea name="" cols="30" rows="10" placeholder="Message" required></textarea>
<button>Send</button>
</form>
</section>
</section>
<footer>
<nav><a href=""><span class="icon-social-facebook"></span></a><a href=""><span class="icon-twitter"></span></a><a href="">Lennart Pagel</a><a href=""><span class="icon-instagram-2"></span></a><a href=""><span class="icon-mail-2"></span></a></nav>
</footer>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</body>
</html>