-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
93 lines (82 loc) · 4.33 KB
/
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
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
<!doctype html>
<htm>
<head>
<title>Assignex Contact</title>
<link href="/CSS/styles.css" ref="stylesheet" type="text/css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous" />
<style>
header {
background-color: white;
}
body {
background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}
.header {
margin-top: 40px;
}
.login {
text-align: center;
}
.fw-normal {
color: white;
}
p {
color: white;
}
</style>
</head>
<body style="background-color: RGBA(var(--bs-dark-rgb),var(--bs-bg-opacity,1))!important;">
<div class="container header">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="/"
class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<i class="bi bi-vector-pen"></i>
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="currentColor"
class="bi bi-vector-pen" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M10.646.646a.5.5 0 0 1 .708 0l4 4a.5.5 0 0 1 0 .708l-1.902 1.902-.829 3.313a1.5 1.5 0 0 1-1.024 1.073L1.254 14.746 4.358 4.4A1.5 1.5 0 0 1 5.43 3.377l3.313-.828zm-1.8 2.908-3.173.793a.5.5 0 0 0-.358.342l-2.57 8.565 8.567-2.57a.5.5 0 0 0 .34-.357l.794-3.174-3.6-3.6z" />
<path fill-rule="evenodd" d="M2.832 13.228 8 9a1 1 0 1 0-1-1l-4.228 5.168-.026.086z" />
</svg>
<span class="fs-4">ASSIGNEX COURSE</span>
</a>
<ul class="nav nav-pills">
<li class="nav-item"><a href="index.html" class="nav-link" style="color:black;">HOME</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link" style="color:black;">CONTACT</a></li>
</ul>
</header>
</div>
<main>
<div class="container input" >
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12">
<form >
<input style="width:530px; height:60px;" text="text" placeholder="Name" required><br>
<input text="email" style="width:530px; height:60px;" placeholder="Email" required><br>
<input text="number" style="width:530px; height:60px;" placeholder="Registration Number"
required><br>
<textarea style="width:530px; height:120px;" placeholder="Feedback"></textarea><br>
<button style="width:530px; height:60px;" class="btn btn-success" text="submit"
aria-required="true">Submit Message</button>
</form>
</div>
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="container text" style="color: white; ">
<p style="font-weight: 400; font-size: 30px;font-style: italic; ">If you are facing an
issues you can fill the form that is provided or you contact Assignex of the
university by contact detauls that provided below</p>
<div class="container" style="margin:auto;">
<h5>MR.XXXXXXXXXXXXXX</h5>
<h5>ASSIGNEX</h5>
<p>ASSIGNEX OFFICE</p>
<p>+91 92222XXXXX</p>
<p>[email protected]</p>
</div>
</div>
</div>
</div>
</div>
</main>
</body>
</htm>