-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (65 loc) · 2.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Home</title>
<meta http-equiv="content-type" content="text/html"; charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" type="text/css" href="home.css">
<link rel="stylesheet" type="text/css" href="indexresponse.css">
</head>
<body>
<header>
<div class="headDiv">
<img src="Head.PNG">
</div>
<div class="knowledgeDiv">
<img src="Knowledge.PNG">
</div>
</header>
<section class="main">
<div class="show">
<nav>
<ul class="navagation">
<li><a class="first" href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="services.html">SERVICES</a></li>
<li><a class="last" href="contact.html">CONTACT</a></li>
</ul>
</nav>
<div class="slideshow">
<script>
var i = 0;
var images = [];
var time = 3000;
images[0] = "research.jpg";
images[1] = "strategy.jpg";
images[2] = "behave.jpg";
images[3] = "process.png";
function changeImg(){
document.slide.src = images[i];
if(i < images.length - 1){
i++;
} else {
i = 0;
}
setTimeout("changeImg()", time);
}
window.onload=changeImg;
</script>
<img name="slide" class="imageS"/>
</div>
</div>
<div class="toby">
<img src="TobySteck.png">
<h2>Toby J. Stecklein, Ph.D.</h2>
<h5>Business Consultant</h5>
</div>
</section>
<section class="info">
<p>Is your business struggling to get off the ground, unable to grow, or simply survive? Do you need a fresh perspective or outside view? Let’s work together to uncover roadblocks and implement corrective actions.</p>
</section>
<footer>
<span>© 2016 | www.knowledgeLLC.org</span>
</footer>
</body>
</html>