-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2column template.html
67 lines (47 loc) · 2.53 KB
/
2column template.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Log In - VegEatable</title>
<!-- COMMON LIBRARIES -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <!-- need this for arrow Glyphicon to display correctly -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script
src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30="
crossorigin="anonymous"></script>
<!-- Use mobile-aware viewport -->
<meta name="viewport" content= "width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- ICONS LIBRARY -->
<script src="https://use.fontawesome.com/9f03d0cffe.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.css" integrity="sha256-D3+gw6JE4hEJ9pnCs+BglSfZ2yG5gF+JGdPJ/v183fo=" crossorigin="anonymous" />
<!-- CSS -->
<link href="https://fonts.googleapis.com/css?family=EB+Garamond" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nobile" rel="stylesheet">
<!-- MAIN CSS FILE-->
<link rel="stylesheet" href="2columntemplate.css">
</head>
<body>
<div id="container">
<div id="header"> VegEatable </div>
<div id="left" style="height: 90vh; padding: 10% 0;">
<div id="innerleft">
<div style="margin: 0 auto; max-width: 300px; ">
CONTENT HERE
</div>
</div>
</div>
<div id="right" style="height: 90vh; padding: 10% 0;">
<div id="innerright">
<div style="margin: 0 auto; max-width: 300px; ">
CONTENT HERE
</div>
</div>
</div>
</div>
</body>