-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
60 lines (55 loc) · 2.99 KB
/
index.php
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://s3.us-east-2.amazonaws.com/viazi-website/style.css">
<link rel="stylesheet" type="text/css" href="https://s3.us-east-2.amazonaws.com/viazi-website/timeline.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<title>Viazi - Home</title>
</head>
<body>
<!-- https://www.w3schools.com/php/php_includes.asp
http://afterlecture.com/forums/topic/how-to-copy-header-footer-in-every-html-page/ -->
<!-- Header -->
<?php include ("header.php"); ?>
<!-- End Header -->
<div class="container marketing" style="text-align:center">
<div class="row">
<div class="col-lg-6">
<img src="https://s3.us-east-2.amazonaws.com/viazi-website/img/calendar.png" class="img-responsive" width="216" height="216">
<h2>
<a class="btn btn-secondary" href="howitworks.php" role="button">What We Do</a>
</h2>
<p>
<!-- Deploying custom applications to solve our customers' roadblocks. -->
The only difference between “This is too complicated for software” and “How soon can I use this?” is a ten-minute demo.
</p>
</div>
<div class="col-lg-6">
<img src="https://s3.us-east-2.amazonaws.com/viazi-website/img/users.svg" class="img-responsive" width="216" height="216">
<br>
<h2><a class="btn btn-secondary" href="contact.php" role="button">What Users Say</a></h2>
<p>
Read testimonials from current users about the impact of Viazi software.
</p>
</div>
</div>
</div>
<!-- https://stackoverflow.com/questions/2189452/when-to-use-margin-vs-padding-in-css
https://getbootstrap.com/docs/4.0/utilities/spacing/
-->
<!-- Footer -->
<?php include ("footer.php"); ?>
<!-- End Footer -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
<script src="navbar.js"></script>
</body>
</html>