-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (115 loc) · 4.15 KB
/
index.html
File metadata and controls
123 lines (115 loc) · 4.15 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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">
<script src="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.4/js/all.min.js" integrity="sha256-gSqw5G+Gss6YqyQlqyIkuQ0IRZUqGsDVq9c0tiF+mL8=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
<link rel="stylesheet" href="style.css">
<script src="app.js"></script>
<title>Document</title>
</head>
<body>
<div class="container ">
<p class="is-size-1 has-text-centered">
Website Form
</p>
<form id="form" action="https://formspree.io/f/xrgrvawn" method="post">
<div class="field" id="firstname">
<label class="label"> First Name</label>
<div class="control has-icons-left has-icons-right">
<input name="First Name" class="input " type="text" placeholder="enter first name">
<span class="icon is-small is-left">
<i class="fas fa-user"></i>
</span>
<span class="icon is-small is-right">
<i class="fas fa-check"></i>
</span>
<p class="help"></p>
</div>
</div>
<div class="field" id="lastname">
<label class="label">Lastname</label>
<div class="control has-icons-left has-icons-right">
<input name="Last Name" class="input " type="text" placeholder="enter last name">
<span class="icon is-small is-left">
<i class="fas fa-user"></i>
</span>
<span class="icon is-small is-right">
<i class="fas fa-check"></i>
</span>
</div>
<p class="help"></p>
</div>
<div class="field" id="email">
<label class="label">Email</label>
<div class="control has-icons-left has-icons-right">
<input name="Email" class="input" type="email" placeholder="Email input" >
<span class="icon is-small is-left">
<i class="fas fa-envelope"></i>
</span>
<span class="icon is-small is-right">
<i class="fas fa-check"></i>
</span>
</div>
<p class="help "></p>
</div>
<div class="field" id="countrycode">
<label class="label">countrycode</label>
<div class="control">
<div class="select">
<select>
<option>+ 91</option>
<option>+1</option>
</select>
</div>
</div>
</div>
<div class="field" id="phonenumber">
<label class="label"> mobile number</label>
<div class="control has-icons-left has-icons-right">
<input name="Mobile number" class="input" type="text" placeholder="mobile number">
<span class="icon is-small is-left">
<i class="fas fa-phone"></i>
</span>
<span class="icon is-small is-right">
<i class="fas fa-check"></i>
</span>
</div>
<p class="help"></p>
</div>
<div class="field" id="msg">
<label class="label">Message</label>
<div class="control">
<textarea name="Message" class="textarea input" placeholder="Textarea">
</textarea>
<span class="icon is-small is-right">
<i class="sa"></i>
</span>
</div>
<p class="help "></p>
</div>
<div class="field" id = "terms">
<div class="control">
<label class="checkbox input">
<input type="checkbox">
I agree to the <a href="#">terms and conditions</a>
</label>
<p class="help"></p>
</div>
</div>
<div class="field is-grouped">
<div class="control" id='submit'>
<button class="button is-link" type="submit">Submit</button>
</div>
<div class="control " id='reset'>
<button class="button is-link" type="button" >
<i class="fas fa-history"></i> Reset
</button>
</div>
</div>
</form>
</div>
</body>
</html>