summaryrefslogtreecommitdiff
path: root/contact.html
blob: bac435567b3f31ee66aa26ff4861b00b70042862 (plain)
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.container {
  border-radius: 5px;
  padding: 10px;
}

.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

.row:after {
  content: "";
  display: internal;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
</style>
</head>
<body>
<div style="text-align: center">
<i><h1>!!! Contact Us !!!</h1></i>
</div>
<div class="container">
  <div style="text-align:center">
    <u><h2>Chandigarh University</h2>
    <p>Get In Touch with Us</p></u>
  </div>
  <div class="row">
    <div class="column">
    <img src="https://i.ibb.co/fM8PJ65/download.png" alt="download" style="width:80%">
    </div>
    <div class="column">
      <h2>Address</h2>
      <address>NH-95, Ludhiana - Chandigarh State Hwy, Punjab 140413</address>
      <br>
      <h2>Phone</h2>
      <address>1800 1212 88800</address>
      <address>+91-8146948000 (General Enquiry)</address>
      <address>+91-8146947000 (Technical Support)</address>
      <br>
      <h2>Email</h2>
      <address>cucet@cumail.in</address>
    </div>
  </div>
</div>
</body>
</html>