-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmartWatchProject.html
87 lines (71 loc) · 1.68 KB
/
SmartWatchProject.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
<html>
<head>
<title>
Mini project-smart watch
</title>
</head>
<style>
.container{
position:relative;
display: inline-block;
}
img{
display:block;
}
body{
margin: 0%;
background-color: aqua;
}
#time{
position:absolute;
top:38%;
left:34%;
}
p{
color:aqua
}
#one{
background-color: #565681;
width:50px;
height:50px;
margin-left: 20%;
}
#two{
background-color: #ca3d22;
width:50px;
height:50px;
margin-left: 20%;
}
#three{
background-color: #8a5362;
width:50px;
height:50px;
margin-left: 20%;
}
#four{
background-color: #e9c7be;
width:50px;
height:50px;
margin-left: 20%;
}
</style>
<body >
<div class="container">
<img src="iOeUBV7.png" height="200px" width="200px" id="image">
<div >
<p id="time">
00:00:00
</p>
</div>
</div>
<div id="one">
</div>
<div id="two">
</div>
<div id="three">
</div>
<div id="four">
</div>
<script src="smart.js" type="text/javascript"></script>
</body>
</html>