-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontactus.html
59 lines (56 loc) · 1.49 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
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<style>
* {
box-sizing: border-box;
}
body {
display: flex;
min-height: 100vh;
flex-direction: row;
margin: 0;
}
.col-1 {
background: rgb(190, 190, 190);
}
.col-2 {
display: flex;
flex-direction: column;
flex: 5;
}
.content {
display: flex;
flex-direction: row;
}
.content > article {
flex: 4;
min-height: 60vh;
}
header, footer {
background: rgb(190, 190, 190);
height: 10vh;
}
header, footer, article, nav {
padding: 1em;
}
p {color:black;}
</style>
<html>
<head>
<title>CIST 2550 Final</title>
</head>
<nav class="col-1"><img src="NorthGeorgiaTech.jpg" alt"ngtc" style="width:250px;height:125px;"></img>
<ul>
<li><a href="home.php">Home</a></li>
<li><a href="cart.php">Cart</a></li>
<li><a href="contactus.html">Contact Us</a>
<li><a href="showcalendar_withevent.php">Show calendar</a></li>
<li><a href="login.php">Account</a></li>
</ul>
</nav>
<div class="col-2">
<header></header>
<body>
<h1>Contact Us!</h1>
<p><a href="mailto:email@example.com">Email us</a></p>
<a href="tel:5554280940">Call us at 555-428-0940</a>
</body>