-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
67 lines (57 loc) · 1.93 KB
/
about.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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<link rel="stylesheet" href="./ab-style.css">
</head>
<body>
<nav>
<div class="logo">
<img src="http://epitas.in/wp-content/uploads/2019/04/logo1.png" alt="Epitas" >
</div>
<button class="btn-toggle">
<span></span>
<span></span>
<span></span>
</button>
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="active" href="#">About</a></li>
<li><a href="feature.html">Feature</a></li>
<li><a href="testimonial.html">Testimonial</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section id="abt" class="about">
<div class="box">
<img src="./image/box.png" alt="box">
<h1>Pre-Installed</h1>
<p>Pre-installed with 5 platforms - Python, C, C++, Java, PHP</p></div>
<div class="box"><img src="./image/tec-removebg-preview.png" alt="service">
<h1>Technical Support</h1>
<p>3-month Tech Support for any set-up problem</p></div>
<div class="box"> <img src="./image/linux-removebg-preview.png" alt="linux">
<h1>Linux Expert</h1>
<p>you an expert in Linux Command Line Programming</p></div>
<div class="box"> <img src="./image/program.png" alt="program">
<h1>Pre-bundled</h1>
<p>with more than 100 sample programs</p> </div>
</section>
</body>
<script>
var abt=document.getElementById("abt");
var menuUL = document.getElementsByTagName("ul");
var heightOful = menuUL[0].scrollHeight;
var btnToggle = document.getElementsByClassName("btn-toggle");
btnToggle[0].addEventListener("click",function(){
if(menuUL[0].style.maxHeight){
menuUL[0].style.maxHeight = null;
abt.style.top="200px";
}
else{
menuUL[0].style.maxHeight = menuUL[0].scrollHeight + "px";
abt.style.top="500px";
}
});
</script>
</html>