-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (101 loc) · 4.42 KB
/
index.html
File metadata and controls
111 lines (101 loc) · 4.42 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=1024">
<title>TAC | Home</title>
<meta charset="utf-8">
<link href="css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link href="css/main.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<div id="top">
<div id="topcontainer">
<div class="navcontainer">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<div id="taclogo"><img src="images/taclogo.png" width="290px" height="140px;" /></div>
<div class="navcontainer">
<ul>
<li><a href="services.html">Services</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<div id="mid">
<div id="mad">
<div id="madcont">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="images/slide1.jpg" alt="Partners" width="980px" height="500px">
</div>
<div class="item">
<img src="images/slide2.jpg" alt="Receptionist" width="460" height="345">
</div>
<div class="item">
<img src="images/slide3.jpg" alt="Receptionist" width="460" height="345">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<div id="bot">
<div id="botcontainer">
<div id="footer_details">
<div class="bototcontainer" style="margin-left:25px;">
<h4>Certifications</h4>
<img src="images/tacert2.png" width="300px" />
<img src="images/tacert1.png" width="130px" />
</div>
<div class="bototcontainer" style="margin-left:25px;">
<h4>Site Map</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
<div class="bototcontainer" style="margin-left:25px;">
<h4>Contact Us</h4>
<ul>
<li>Address: 70 Harris St, Harris Park 2150</li>
<li>Telephone: (02) 9806 9545</li>
<li>Fax: (02) 9806 9549</li>
<li>Email: office@tacaust.com.au</li>
</ul>
</div>
</div>
<div id="footer_logo">
<div id="footer_logo_container">
<p>TAC Australia Pty Ltd © 2017</p>
</div>
</div>
</div>
</div>
</body>
</html>