-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
64 lines (62 loc) · 2.39 KB
/
contact.html
File metadata and controls
64 lines (62 loc) · 2.39 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Bit . Atena</title>
</head>
<body>
<section class="showcase ">
<header>
<h2 class="logo">Bit.</h2>
<div class="toggle "></div>
</header>
<body>
<div class="container">
<div class="aboutus">
<div>
<h4>About Us</h4>
<ul class="about">
<li>
<span>BIT. corporation created in March 2020 with several projects and ideas for an Innovative future. That will happen Lets Make our Dream Future in a Real Presente Future. If you want to collaborate on our projects join us.</span>
</li>
</ul>
</div>
</div>
<div class="ContactForm">
<h4>Contact</h4>
<div class="formBox">
<div class="inputBox w50">
<input type="text" name="" required>
<span>First Name</span>
</div>
<div class="inputBox w50">
<input type="text" name="" required>
<span>Last Name</span>
</div>
<div class="inputBox w50">
<input type="text" name="" required>
<span>Email Adress</span>
</div>
<div class="inputBox w100">
<textarea name="" required></textarea>
<span>Message</span>
</div>
<div class="inputBox w100">
<input type="submit" value="Send">
</div>
</div>
</div>
</div>
</section>
<div class="menu">
<ul>
<li><a href="#" data-href="index.html">Home</a></li>
<!-- <li><a href="#" data-href="projects.html">Projects</a></li> -->
<li><a href="#" data-href="contact.html">Contact</a></li>
</ul>
</div>
<script src="./scripts.js"></script>
</body>
</html>