-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcontact.html
117 lines (116 loc) · 3.62 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FrontEnd Database</title>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./animation.css" />
<meta
name="keywords"
content="projects, idea , database ,Frontend, archive "
/>
<meta name="theme-color" content="#5f5eaa" />
<link rel="icon" href="./icon.png" />
<link rel="shortcut icon" href="./icon.png" />
<link rel="apple-touch-icon" href="./icon.png" />
</head>
<body>
<div class="body">
<!-- lines -->
<div class="lines">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<main>
<!-- navbar -->
<div class="navbar">
<a href="/" class="logo">Frontend Database</a>
<div class="links">
<a href="/">HOME</a>
<a href="contributors.html">CONTRIBUTORS</a>
<a href="contact.html">CONTACT</a>
</div>
<div class="theme">
<iconify-icon
class="theme-icon"
icon="system-uicons:sun"
onclick="handleChange('light')"
id="sun"
></iconify-icon>
<iconify-icon
class="theme-icon"
icon="system-uicons:moon"
onclick="handleChange('dark')"
id="moon"
></iconify-icon>
</div>
</div>
<!-- hero section -->
<div class="hero">
<div class="contact-form">
<!-- <h3>Contact</h3> -->
<form
action="https://formsubmit.co/kumarashishranjan4971@gmail.com"
method="POST"
>
<input
type="text"
placeholder="Name"
name="name"
required
minlength="10"
maxlength="40"
/>
<input type="email" placeholder="Email" name="email" required />
<input
type="text"
placeholder="Subject"
name="subject"
required
maxlength="40"
/>
<textarea
name="msg"
id="msg"
cols="30"
rows="10"
placeholder="Message"
required
></textarea>
<button type="submit" class="btn">Submit</button>
</form>
</div>
<div class="hero-logo">
<a
href="https://github.com/dev-AshishRanjan/Hacktoberfest-Frontend"
target="_blank"
><lord-icon
src="https://cdn.lordicon.com/xzalkbkz.json"
trigger="morph"
state="hover-wave"
style="width: 250px; height: 250px"
class="lordIcon"
>
</lord-icon
></a>
</div>
</div>
<div class="footer">
<p>Open Source Project @2023</p>
<p>Developed by Kumar Ashish Ranjan and Open Source Community</p>
</div>
</main>
</div>
</body>
<script src="./app.js"></script>
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
<script src="https://cdn.lordicon.com/lordicon.js"></script>
</html>