-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (72 loc) · 3.09 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Princeton E-Club Web Development Team">
<meta name="google-site-verification" content="9JirEhZSRN5ij5m1EZBr2HASdpStqvMfMckmpBu1r1E" />
<title>Princeton Coffeehouse</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- Bootstrap core CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="./main.css" rel="stylesheet">
</head>
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="row" id="titlebar">
<div class="side col d-none d-sm-block" id="left-content-div">
<p id="left-text">5 PROSPECT AVENUE PRINCETON, NJ</p>
</div>
<div id="title" class="col">
<a href="./"><span class="helper"></span><img src="assets/coffeetitle.png"></a>
</div>
<div class="side col d-none d-sm-block" id="right-content-div">
<p id="right-text">MADE POSSIBLE BY <a href="https://www.studentagencies.net/" target="_blank">STUDENT AGENCIES</a> AND <a href="https://odus.princeton.edu/odus-programs/campus-club" target="_blank">CAMPUS CLUB</a></p>
</div>
</div>
<div id="navlinks">
<nav class="nav">
<a class="nav-link" href="../about">ABOUT</a>
<a class="nav-link" href="../menu">MENU</a>
<a class="nav-link" href="../contact">CONTACT</a>
<a class="nav-link" href="../catering">CATERING</a>
</nav>
</div>
</header>
<img id="background" src="assets/barbackground.png">
<!-- small screen content -->
<div class="mobile" id="hours-div">
<p id="text-title">Hours:</p>
<p id="hours"> M-F 8am-6pm</p>
<p id="hours"> Sat. 10am-6pm</p>
<p id="hours"> Sun. 10am-6pm</p>
</div>
<div class="mobile" id="location-div">
<p id="location">Located at 5 Prospect Ave, Princeton, NJ 08540</p>
</div>
<footer>
<div class="inner">
<p>HOURS: M-F 8AM-6PM, SAT & SUN 10AM-6PM.<br>BY <a href="https://www.facebook.com/pucoffeeclub/">PRINCETON COFFEE CLUB</a></a>.</p>
</div>
</footer>
</div>
</body>
</html>