-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathICO_contact.html
56 lines (56 loc) · 1.9 KB
/
ICO_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
<!Doctype html>
<head>
<title>Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="page-header">
<div class="row">
<img class="navbar-brand" src="logo.png" alt="logo" width="25%" height="25%">
</div>
</div>
<div class="container">
<h2>Contact</h2>
<h5>(To send updates regarding publishing information) </h5>
<form action="">
<div class="form-group">
<label for="Cemail">Contact Email-Id:</label>
<input type="email" class="form-control" id="Cemail">
</div>
<div class="form-group">
<label for="CNumber">Contact Number:</label>
<input type="number" class="form-control" id="CNumber"/>
</div>
<div class="form-group">
<label for="year">Social Media Contact:</label>
<div class="form-row">
<div class="form-group col-md-6">
<label for="What">LinkedIn:</label>
<input type="text" class="form-control" id="Link"/>
</div>
<div class="form-group col-md-6">
<label for="sky">Skype:</label>
<input type="text" class="form-control" id="sky"/>
</div>
<div class="form-group col-md-6">
<label for="Tele">Telegram:</label>
<input type="text" class="form-control" id="Tele"/>
</div>
</div>
<div class="form-group">
<label for="CPerson">Contact Person Name:</label>
<input type="text" class="form-control" id="CPerson">
</div>
<div class="form-group">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" value="" required/>The information provided here by me is original,</br>
I will be responsible for anything unofficial uploaded
</label>
</div>
<button type="next" class="btn btn-success">Submit</button> <button type="next" class="btn btn-success">Save and Submit Later</button>
</form>
</div>
</body>
</html>