-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
100 lines (95 loc) · 4.07 KB
/
Copy pathcontact.html
File metadata and controls
100 lines (95 loc) · 4.07 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
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
98
99
100
<!DOCTYPE html>
<html lang="en">
<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="icon" type="image/x-icon" href="/images/dustbin1.png">
<script src="https://kit.fontawesome.com/d0c3a1cd55.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/homepage.css">
<link rel="stylesheet" href="./css/contact.css">
<link rel="stylesheet" href="./css/common.css">
<script src="./js/logout.js" defer></script>
<script src="./js/mail.js" defer></script>
<title>Green</title>
</head>
<body>
<section class="dashboard">
<!-- header -->
<header class="dashboard_header">
<div class="logo">
<img src="./images/dustbin1.png" class="bin-logo" alt="bin">
</div>
<h1 class="title-time">Welcome, Sadrealam Ahmed !</h1>
<!-- <i class="fa fa-user-vneck"></i> -->
<button class="logout-btn" id="logout-btn">
LOGOUT
</button>
</header>
<nav>
<ul class="nav-links">
<li>
<a href="homepage.html">Home</a>
</li>
<li>
<a href="contact.html">Contact us</a>
</li>
<li>
<a href="about.html">About us</a>
</li>
<li>
<a href="chart.html">Chart</a>
</li>
</ul>
</nav>
<!-- main -->
<div class="content">
<form action="" class="contact-us" id="contact-us">
<div class="contact-design">
<img src="images/contact-page.svg" alt="" class="contact-us-image">
</div>
<h3>Contact Us</h3>
<p>Please provide us few details about yourself.</p>
<div class="contact-area">
<div class="contact-area-left">
<div class="name-section">
<label for="name">Your Name</label><br>
<input type="text" placeholder="Enter your name here" id="name-input" name="name" required>
</div>
<div class="mail-section">
<label for="mail">Mail</label><br>
<input type="email" placeholder="example@xyz.com" id="email-input" name="email" required>
</div>
<div class="phone-section">
<label for="phone">Phone</label><br>
<input type="tel" placeholder="1234567890" pattern="[0-9]{10}" id="phone-input" name="phone">
</div>
</div>
<div class=" contact-area-right ">
<label for="message ">Message</label>
<textarea name="user-message " id="user-message" placeholder="Your message here . . " required></textarea>
<div class="buttons">
<button type="submit" id="submit">Submit</button>
<!-- <button type="reset" id="add">Add data to db</button> -->
<button type="reset" id="reset">Reset</button>
<!-- <button type="reset" id="itemlist">View Data list</button> -->
</div>
</div>
</div>
<div class="call-to-action ">
</div>
</form>
</div>
<!-- footer -->
<footer class="dashboard_footer">
<div class="footer-left">
<p>Made by : Sadrealam Ahmed</p>
</div>
<div class="footer-right" id="footer-right">
<a href="https://github.com/sadre1" target="_blank"><i class="fa fa-github ans fa-2x"></i></a>
</div>
</footer>
</section>
<script src="app.js"></script>
</body>
</html>