-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
88 lines (78 loc) · 4.39 KB
/
feedback.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
<!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="stylesheet" href="feedback.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Oswald:wght@350&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Feedback</title>
</head>
<body>
<!--------------------------------------------Navigation-------------------------------------------->
<section class="Main">
<nav>
<a href="https://guptakushal03.github.io/First-Website/" class="logo">KG</a>
<div class="nav_links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="website.html">Want a website?</a></li>
<li><a href="aboutme.html">About Me!</a></li>
<li><a href="feedback.html">Feedback?</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<!--------------------------------------------Header-------------------------------------------->
<div class="header">
<div class="text">
<div class="heading1"><h1>Kushal</h1></div><br>
<h3><a href="index.html">Home</a> > <a href="feedback.html"><span class="text2">Feed Back</span></a></h3>
</div>
</div>
<!--------------------------------------------Body--------------------------------------------->
<div class="body" align="center"><br>
<div class="glass">
<div class="warning">
Warning: The form below here is out of order,<br>
You can still give feedback/ contact me using gmail <strong><a href="mailto:guptakushalwebsite2021@gmail.com">here</a></strong>.
</div>
<div class="contact-form">
<form class="form" action="" method="post">
<input type="text" name="name" placeholder="Enter your name" maxlength="20">
<input type="email" name="email" placeholder="Enter your Email Address" maxlength="40">
<input type="text" name="subject" placeholder="Subject" required maxlength="300">
<textarea class="textbox" name="message" rows="4" placeholder="Message" required maxlength="10000"></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</div><br><br>
</div>
</section>
<!--------------------------------------------Footer-------------------------------------------->
<section class="footer">
<h1>Contact Me:</h1>
<div class="social_links">
<a href="social_fb.html"><i class="fab fa-facebook-f"></i></a>
<a href="https://instagram.com/kushal_gupta_03"><i class="fab fa-instagram"></i></a>
<a href="social_twitter.html"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/kushal-gupta-a24625222"><i class="fab fa-linkedin-in"></i></a>
</div>
</section>
<!--------------------------------------------Java Script--------------------------------------------->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>
</body>
</html>