-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
145 lines (136 loc) · 4.67 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
<!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" />
<title>Windows 11 clone</title>
<script
src="https://kit.fontawesome.com/2a09947573.js"
crossorigin="anonymous"
></script>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="window">
<div class="recycle">
<img src="Assets/recyclebinicon.png" alt="recycle bin">
<div style="font-size: 12px">Recycle bin</div>
</div>
<div class="edge">
<img src="Assets/icons/edgeicon.png" alt="recycle bin">
<div style="font-size: 12px; text-align: center;" >Microsoft edge</div>
</div>
</div>
<div class="taskbar">
<div class="tasks" id="window-icon">
<i class="fab fa-windows fa-lg" ></i>
</div>
<div class="tasks">
<img src="Assets/icons/search.png" alt="search" />
</div>
<div class="tasks">
<img src="Assets/icons/edgeicon.png" alt="edge" />
</div>
<div class="tasks">
<img src="Assets/icons/file-explorer.png" alt="file explorer" />
</div>
<div class="tasks">
<img src="Assets/icons/vscode.png" alt="vs-code" />
</div>
</div>
<div class="startmenu" id="startmenu">
<section>
<div class="upper-sec">
<strong> Pinned </strong>
<span>
All apps <i class="fas fa-chevron-right"></i>
</span>
</div>
<div class="pinned">
<div class="pinned-icon">
<img src="Assets/icons/edgeicon.png" alt="edge" />
<div>Microsoft Edge</div>
</div>
<div class="pinned-icon">
<img src="Assets/pinned-icons/calculator.png" alt="calculator" />
<div>Calculator</div>
</div>
<div class="pinned-icon">
<img src="Assets/pinned-icons/gallery.png" alt="Photos" />
<div>Photos</div>
</div>
<div class="pinned-icon">
<img src="Assets/pinned-icons/mail.png" alt="mail" />
<div>Mail</div>
</div>
<div class="pinned-icon">
<img src="Assets/pinned-icons/Weather.png" alt="weather" />
<div>Weather</div>
</div>
<div class="pinned-icon">
<img src="Assets/icons/vscode.png" alt="vs-code" />
<div>Vs Code</div>
</div>
<div class="pinned-icon">
<img src="Assets/icons/file-explorer.png" alt="file-explorer" />
<div>File Explorer</div>
</div>
<div class="pinned-icon">
<img src="Assets/pinned-icons/tips.png" alt="tips" />
<div>Tips</div>
</div>
<div class="pinned-icon">
<img src="Assets/pinned-icons/teams.png" alt="teams" />
<div>Teams</div>
</div>
</div>
<div class="lower-sec">
<strong> Recommended </strong>
<span>
More <i class="fas fa-chevron-right"></i>
</span>
</div>
<div class="recommended">
<div class="recommended-icon">
<img src="Assets/Recent icons/cmd.png" alt="cmd" />
<div>Node.js command prompt
<div style="color:grey; font-weight: 400;">Recently Added</div>
</div>
</div>
<div class="recommended-icon">
<img src="Assets/Recent icons/mongodb.png" alt="cmd" />
<div>MongoDB Compass
<div style="color:grey; font-weight: 400;">Recently Added</div>
</div>
</div>
<div class="recommended-icon">
<img src="Assets/Recent icons/nodejs.png" alt="cmd" />
<div>Node.js
<div style="color:grey; font-weight: 400;">Recently Added</div>
</div>
</div>
<div class="recommended-icon">
<img src="Assets/Recent icons/github.png" alt="cmd" />
<div>Logged in as (Garima..
<div style="color:grey; font-weight: 400;">Recently Added</div>
</div>
</div>
</div>
<hr>
<div class="account">
<div class="profile">
<img src="Assets/user.png" alt="user">
<strong>Garima Sharma</strong>
</div>
<img src="Assets/power-off.png" alt="off">
</div>
</section>
</div>
<video autoplay muted>
<source src="Assets/video.webm" type="video/webm" />
</video>
<script src="index.js"></script>
</body>
</html>