-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.41 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="container">
<div class="halfScreen">
<h2>Contact Form</h2>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<input class="place" type="text" id="userName" name="firstname" placeholder="Your username..">
<input class="place" type="email" id="userEmail" name="userEmail" placeholder="Your email..">
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<div class="pass">
<input type="password" id="password" name="firstname" placeholder="Your password..">
<i onclick="pass()" id="eye" class="fa fa-eye"></i>
</div>
<label for="subject">Subject:</label>
<textarea class="place" id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input id="submit" type="submit" value="Submit">
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>