-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
70 lines (63 loc) · 2.46 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>vyTunes</title>
<link rel="stylesheet" href="assets/css/contact.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous">
</head>
<body>
<header>
<nav>
<input type="checkbox" id="nav" class="hidden">
<label for="nav" class="navbtn">
<i></i>
<i></i>
<i></i>
</label>
<div class="logo">
<a href="#" style="text-transform:none">vyTunes</a>
</div>
<div class="nav-wrapper">
<ul>
<li class="one"><a href="/vytunes/index.html">.Accueil</a></li>
<li class="two"><a href="#music&me">.Music & Me</a></li>
<li class="three"><a href="#video">.Video</a></li>
<li class="four">
<a href="#perspective">.Perspective
</a>
</li>
<hr>
</ul>
<ul id="right">
<li class="five"><a href="#">.Download</a></li>
<li class="six"><a href="/vytunes/contact.html">.Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<div class="cover">
<h1>Contact US</h1>
<p class="leader">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolorem, ducimus iure! Amet reiciendis sapiente itaque quis cupiditate nesciunt deleniti neque at provident eaque ex laudantium libero, harum iure tempora cumque.</p>
</div>
<div class="form">
<form action="">
<input type="text" name="name" placeholder="name" id="">
<input type="text" placeholder="E-mail" id="">
<input type="text" placeholder="Message" id="msg-li">
</form>
<button type="button" class="btn btn-second" id="submit">Let's talk</button>
</div>
<footer>
<div class="footer-bottom text-center">
Copyright © 2018 vyTunes by Obba Group LLC
</div>
</footer>
</div>
</body>
</html>