-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
66 lines (61 loc) · 2.18 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Caveat&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="./external.css">
</head>
<body style="background-color: #F8F8FF; min-height: 100vh;
display:flex;
flex-direction: column;">
<div>
<a href="./FrontPage.html">
<img class="sd" src="./android-chrome-192x192.png"></a>
<h1 style="font-family: Caveat, cursivel; color: slategrey; background-color:bisque; display: flex;">Enter Details : </h1>
</div>
<!-- <table border="10" cellpadding="15">
<thead>
<tr>
<th style="display: flex;">First Name: <input class="same2" type="text" placeholder='Enter'></th>
</tr>
<tr>
<th>Last Name: <input type="text" placeholder='Enter'></th>
</tr>
<tr>
<th>Mobile Number: +91 <input type="text" placeholder='Enter'> *optional</th>
</tr>
<tr>
<th>Email: <input type="text" placeholder='Enter'></th>
</tr>
</thead>
</table>
<button style="display:flex center;padding:15px">Submit</button>
-->
<form>
<label>First Name:
<input id="User" name="Name" type="text" />
</label>
<br><br>
<label>Last Name:
<input id="User" name="Name" type="text" />
</label>
<br><br>
<label>Mobile: +91
<input id="User" name="Name" type="text" />
</label>
<br><br>
<label>Email:
<input id="User" name="Name" type="email" />
</label>
<br>
</form>
<button type="submit" style="padding:12px;margin-top: 30px;">Submit</button>
<footer ><p> Developers: Sanskar, Satyam, Richard <br>
<a href="https://github.com/samuelard7/WebD.git">github</a>
</p></footer>
</body>
</html>