-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 822 Bytes
/
index.html
File metadata and controls
42 lines (40 loc) · 822 Bytes
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
<!doctype html>
<html lang="en">
<style>
body{
background-image: url("imageFiles/Resistors.png");
color: #939393;
}
object{
color: #939393;
}
#virusProgress {
position: relative;
width: 100%;
height: 30px;
background-color: grey;
}
#virusBar {
position: absolute;
width: 1%;
height: 100%;
background-color: green;
</style>
<head>
</head>
<body>
<script src="virus.js"></script>
<br>
<button onclick="move()">Click Me</button>
<div id = "virusProgress">
<div id="virusBar"></div>
<div id="label">10%</div>
</div>
</div>
<div>
<object data="txtFiles/description.txt" type="text/plain" width="100%" style="height: 10em">
<a href="description.txt">Embedded Text Document</a>
</object>
</div>
</body>
</html>