-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhwin.html
More file actions
85 lines (75 loc) · 2.1 KB
/
Copy pathhwin.html
File metadata and controls
85 lines (75 loc) · 2.1 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Half Windsor Knot</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background: linear-gradient(135deg, #1e3c72, #2a5298);
}
.container {
background: white;
width: 60%;
margin: auto;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
h1 {
color: #333;
}
.instructions {
margin-top: 20px;
}
img {
width: 100%;
max-width: 500px;
height: auto;
border: 1px solid #ddd;
border-radius: 5px;
margin: 10px 0;
}
button {
margin-top: 20px;
padding: 10px 20px;
font-size: 16px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
</style>
<script>
function exitPage() {
window.close(); // Closes the current window (this may not work in all browsers)
}
</script>
</head>
<body>
<div class="container">
<h1>Half Windsor Knot</h1>
<div class="instructions">
<img src="hwin1.png" alt="Step 1">
<img src="hwin2.png" alt="Step 2">
<img src="hwin3.png" alt="Step 3">
<img src="hwin4.png" alt="Step 4">
<img src="hwin5.png" alt="Step 5">
<img src="hwin6.png" alt="Step 6">
<img src="hwin7.png" alt="Step 7">
<img src="hwin8.png" alt="Step 8">
<img src="hwin9.png" alt="Step 9">
<img src="hwinall.png" alt="Step all">
</div>
<div class="buttons">
<button onclick="exitPage()">Exit</button>
</div>
</div>
</body>
</html>