-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
85 lines (79 loc) · 2.56 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
<head>
<title>ISBE Tech | Contact</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css" charset="utf-8"/>
<!-- GRID -->
<link rel="stylesheet" type="text/css" href="css/gumby.css" >
<link rel="stylesheet" href="css/buttons.css">
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js/buttons.js"></script>
<script type="text/javascript" src="js/navbutton.js"></script>
</head>
<body>
<div id="navbar-container" class="norm">
<div class="navbar-wrapper">
<div id ="navbar-title">
<a href="index.html">ISBE TECH</a>
</div>
<div class = "navbar" id = "navbar-full">
<ul>
<li><a href="about.html" >ABOUT US</a></li>
<li><a href="whatwedo.html">WHAT WE DO</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="contact.html"id="active">CONTACT US</a></li>
</ul>
</div>
<div id="dropdown-div">
<a href="#" id="dropdown-button">
<button class="btn-lg">
<span class="glyphicon glyphicon-align-justify">
</span>
</button>
</a>
</div>
</div>
</div>
<div id="dropdown-nav" style="display: none;">
<ul>
<li><a href="about.html" >ABOUT US</a></li>
<li><a href="whatwedo.html">WHAT WE DO</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="contact.html"id="active">CONTACT US</a></li>
</ul>
</div>
<div class = "page-container-1" id="about-bkgd">
<div class = "body-container-1">
<h1>GET IN TOUCH.</h1>
<div class = "body-header-descrip">
<h2>We'd love to hear from you.</h2>
</div>
</div>
</div>
<div id="contact-links">
<div class="row">
<div class = "six columns full">
<div class = "contact-col join">
<h1>are you a <span>student</span>?</h1>
<p>come create amazing products.</p>
<br>
<a href=# class="borderbtn">JOIN US</a>
</div>
</div>
<div class = "six columns full">
<div class = "contact-col work">
<h1>are you a <span>business</span>?</h1>
<p>let's collaborate.</p>
<br>
<a href=# class="borderbtn">WORK WITH US</a>
</div>
</div>
</div>
</div>
<div class="social-media-container">
<div id = "social-media-buttons">
<a href='https://www.facebook.com/isbetech'><img src="./img/fblogo.png" height='64' width='64'></a>
<a href='https://github.com/ISBE-Tech'><img src="./img/octocat.png" height='64' width='64'></a>
</div>
</div>
</body>