-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (172 loc) · 5.26 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/98.css" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<div class="window welcome-message">
<div class="title-bar">
<div class="title-bar-text">Welcome to my CSS Challenge!</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>Click to IE icons to see projects</p>
<section class="field-row" style="justify-content: flex-end">
<button>OK</button>
<button>Cancel</button>
</section>
</div>
</div>
<div class="programs">
<div class="program my-computer">
<icon-wrapper>
<img src="assets/computer_explorer.ico" width="32" height="32" />
</icon-wrapper>
<div class="title">My Computer</div>
</div>
<div class="program">
<icon-wrapper>
<img src="assets/documents.ico" width="32" height="32" />
</icon-wrapper>
<div class="title">My Documents</div>
</div>
<div class="program">
<icon-wrapper>
<img src="assets/notepad.ico" width="32" height="32" />
</icon-wrapper>
<div class="title">Notepad</div>
</div>
<div class="program">
<icon-wrapper>
<img src="assets/winword.ico" width="32" height="32" />
</icon-wrapper>
<div class="title">Microsoft word</div>
</div>
<div class="program">
<icon-wrapper>
<img src="assets/recyle_bin.ico" width="32" height="32" />
</icon-wrapper>
<div class="title">Recyle bin</div>
</div>
<a
href="https://kkhanhluu.github.io/CSSChallenges/Bulb/"
target="_blank"
class="program project"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Bulb</div>
</a>
<a
href="https://kkhanhluu.github.io/FrontEndBootCamp/Vietnam/"
target="_blank"
class="program project"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Vietnam</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/Beach/"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Beach</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/Dine"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Dine</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/Clock"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Clock</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/Fylo"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Fylo</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/GinAndTonic"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Gin and tonic</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/Huddle%20Landingpage/"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Huddle Landing Page</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/Tea/"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Tea</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/TomNook/"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Tom nook</div>
</a>
<a
href="https://kkhanhluu.github.io/CSSChallenges/WashingMachine/"
class="program project"
target="_blank"
>
<icon-wrapper>
<img src="assets/IE.png" width="32" height="32" />
</icon-wrapper>
<div class="title">Washing Machine</div>
</a>
</div>
</body>
</html>