-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.htm
67 lines (57 loc) · 1.88 KB
/
details.htm
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>
<style>
* {
margin: 0;
padding: 0;
color: white;
}
.main {
margin: 0, auto;
text-align: center;
}
.text {
text-align: center;
text-shadow: -1px 1px 2px #000,
1px 1px 2px #000,
1px -1px 0 #000,
-1px -1px 0 #000;
margin-bottom: 2%;
color: rgb(225,225,225);
}
.slideButton {
color: black;
border: 1px solid black;
background-color: red;
border-radius: 15px;
padding: 5px;
opacity: .8;
font-weight:bold;
cursor: pointer;
float: right;
}
.greenButton {
background-color: green;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="carousel.css" />
<script src="carousel.js" async></script>
<title>UIW - What We Do</title>
</head>
<html>
<body onload="loadSlides(3, 4200)">
<p class="text">Structural steel fabrication and erection, miscellanous steel, and general welding</p>
<div class="slideShow">
<!-- <a class="prev" onclick="previous()"><<</a> -->
<div style="float: left;" class="slide" id="slideCount">
<img id="slide" src="" alt="Slide image" />
</div>
<!-- <a class="next" onclick="next()">>></a> -->
<!-- Removed forward/backward slide buttons. Plan to utilize in the future once I've added better flow and functionality to the carousel scripting -->
<!-- <button type="button" class="slideButton" onclick="{ toggleSlideshow(); this.innerHTML == 'Stop' ? this.innerHTML = 'Play' : this.innerHTML = 'Stop'; this.classList.toggle('greenButton'); }">Stop</button> -->
</div>
</body>
</html>