-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAdd.html
More file actions
57 lines (52 loc) · 1.16 KB
/
Copy pathAdd.html
File metadata and controls
57 lines (52 loc) · 1.16 KB
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
<style type="text/css">
body {
margin: 0;
}
.backimage {
background-image: url("wardrobe.jpg");
background-color: #cccccc;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
height: 800px;
}
.maintext {
text-align: left;
position: absolute;
top: 10%;
left: 20%;
transform: translate(-50%, -50%);
color: navy;
}
.weather {
text-align: right;
position: absolute;
top: 10%;
right: 3%;
transform: translate(-50%, -50%);
color: navy;
}
</style>
</head>
<body>
<link rel = "stylesheet" href = "style.css">
<div class="backimage">
<div class="maintext">
<h1 style="font-size: 50px">Hello Sophia!</h1>
</div>
<div class="weather">
<h1 style="font-size: 30px">Weather</h1>
</div>
<center>
<h5>Add Clothes Instruction</h5>
<p>
<li>
<font size = "5" color = "Navy">Please put the cloth in front of the Camera.</font>
</li>
</p>
</center>
<button onclick="location.href='index.html'"class="back Home">Home</button>
<button onclick="location.href='Sophia.html'"class="back Main" style=" margin-left: 20%;">Main</button>
</div>
</body>