-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (113 loc) · 3.17 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
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
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<title>Informatics College</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body class="body">
<header class="mainheader">
<img src="./oimages/logo.png" style="height:100px; width:100px;" >
<content id="search">
<form>
<input type="text" name="search" placeholder="Search on Google..." onclick="window.location.href='search.html'">
</form>
</content>
<nav>
<ul>
<li><a href="./index.html" >Home</a></li>
<li><a href="./trips.html">Trips</a></li>
<li><a href="./thoughts.html">Thoughts</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</header>
<br>
<div class="slideshow-container">
<div class="iambrpslides fade" id="homepic">
<div class="numbertext">01 / 03</div>
<img src="./oimages/a.png" >
</div>
<div class="iambrpslides fade" id="homepic">
<div class="numbertext">02 / 03</div>
<img src="./oimages/b.png" >
</div>
<div class="iambrpslides fade" id="homepic">
<div class="numbertext">03 / 03</div>
<img src="./oimages/c.png">
</div>
</div>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("iambrpslides");
var dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex> slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 2500); // This is for Changing image every 2.5 seconds
}
</script>
<br>
<script type="text/javascript">
document.title="Home";
</script>
<div class="mainContent">
<div class="Content">
<article class="topContent">
<header>
<h3><a href="#" title="My First Post">What this site is about? </a> </h3>
</header>
<footer>
<p class="post-info">-written by Kanika Mugrai</p>
</footer>
<content>
<p>This site contains data about the author Kanika Mugrai.<br>Such as some photos from different times.<br>
And a poem which is inserted on Thoughts section.
</p>
</content>
</article>
<article class="bottomContent">
<header>
<h3><a href="#" title="Pathway Programme">What purpose will it serve?</a> </h3>
</header>
<footer>
<p class="post-info">-written by Kanika Mugrai</p>
</footer>
<content>
<p>Purpose of it is quite clear.<br>
It would be submitted as a small project required in WE.
</p>
</content>
</article>
</div>
</div>
<aside class="top-sidebar">
<article>
<h3></h3>
<p>Your life is your making.</p>
</article>
</aside>
<aside class="middle-sidebar">
<article>
<h3></h3>
<p>It's our wits that make us man.<br>
Our wits to improve, control and change.</p>
</article>
</aside>
</body>
</html>