-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_now.html
73 lines (73 loc) · 2.49 KB
/
install_now.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Windows 10 Installation</title>
<link rel="stylesheet" href="install.css"> <!-- Link to your CSS file -->
<style>
body {
background-color: #170750; /* Windows 10 blue */
color: white;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background: #170750;
padding: 40px; /* Increased padding */
border-radius: 8px;
width: 80%; /* Wider container */
max-width: 800px; /* Maximum width */
border-top: 20px solid #A8BDD6; /* Windows color */
border-bottom: 10px solid #A8BDD6; /* Window color */
border-left: 10px solid #A8BDD6; /* Window color */
border-right: 10px solid #A8BDD6; /* Window color */
height: 425px; /* Full height */
}
button {
padding: 10px 20px;
border: 1px solid #A8BDD6; /* Button border color */;
border-radius: 4px;
background-color: #170750; /* Windows 10 blue */;
color: white;
cursor: pointer;
font-size: 16px;
margin-top: 15%;
}
button:hover {
background-color: #1A1C6A;
}
.underline {
text-decoration: underline; /* Underline the text */
}
.repair {
margin-top: -75px;
color: white;
margin-left: -650px;
}
.footer {
margin-top: 175px;
margin-left: -550px;
}
</style>
</head>
<body>
<div class="container">
<img src="https://static1.makeuseofimages.com/wordpress/wp-content/uploads/2014/11/productivity-windows-powershell-tutorials.png" alt="Windows Logo" width="200">
<form>
<button type="button" onclick="window.location.href='Setup_starting.html';">
<span class="underline"">I</span>nstall now
</button>
</form>
<h6 class="footer">© 2024 Microsoft Corporation. All rights reserved.</h6>
<div class="repair">
<span class="underline">R</span>epair your computer
</div>
</body>
</html>