-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
138 lines (121 loc) · 5.98 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
<!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>Banana OS v0.022</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined"
rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round"
rel="stylesheet">
<link class="styleCss" rel="stylesheet" href="./styleLight.css">
<link class="excelCss" rel="stylesheet" href="./appFiles/excel/excelLight.css">
<link class="jiraCss" rel="stylesheet" href="./appFiles/jira/jiraLight.css">
<link rel="stylesheet" href="./appFiles/camera/camera.css">
<link rel="stylesheet" href="./appFiles/cupHead/cupHead.css">
<link rel="stylesheet" href="./appFiles/pokemonCard/pokemon.css">
<link class="galleryCss" rel="stylesheet" href="./appFiles/gallery/galleryLight.css">
<link rel="stylesheet" href="./appFiles/whiteBoard/whiteBoard.css">
<link rel="stylesheet" href="./appFiles/linkedIn/linkedIn.css">
<link class="musicCss" rel="stylesheet" href="./appFiles/music/musicLight.css">
<link rel="stylesheet" href="./appFiles//netflix/netflix.css">
<link class="booksCss" rel="stylesheet" href="./appFiles/books/booksLight.css">
<link class="binCss" rel="stylesheet" href="./appFiles/bin/binLight.css">
<link class="calculatorCss" rel="stylesheet" href="./appFiles/calculator/calculatorLight.css">
<link class="settingCss" rel="stylesheet" href="./appFiles/setting/settingLight.css">
</head>
<body>
<!-- <img src="" alt=""> -->
<div class="main-body">
<!-- Title start -->
<div class="title-container">
<div class="title-left-container">
<div class="appleLogo">
<img src="./images/appleLogo2.png" alt="appleLogo">
</div>
<div class="homePageFinderText">
Finder
</div>
<div class="homePageTitleInnerText">File</div>
<div class="homePageTitleInnerText">Edit</div>
<div class="homePageTitleInnerText">View</div>
<div class="homePageTitleInnerText">Go</div>
<div class="homePageTitleInnerText">Window</div>
<div class="homePageTitleInnerText">Help</div>
</div>
<div class="title-right-container">
<div class="homePage-title-right-icon">
<img src="./images/appleScreen.png" alt="appleLogo">
</div>
<div class="homePage-title-right-icon">
<img src="./images/appleSearch.png" alt="appleLogo">
</div>
<div class="homePage-title-right-icon">
<img src="./images/appleAccount.png" alt="appleLogo">
</div>
<div class="homePage-title-right-icon">
<img src="./images/appleOptions.png" alt="appleLogo">
</div>
<div class="homePageTitleDateTime"></div>
</div>
</div>
<!-- title Over Here -->
<!-- Screen Container Start -->
<div class="screenContainer">
<!-- start -->
<!-- over -->
</div>
<!-- Screen Container Over -->
<!-- Dock Container Start-->
<div class="dockContainer">
<div class="dock">
<div class="dockIcon" dockApp="Launch">
<img src="./images/Launch.png" alt="Launch">
</div>
<div class="dockIcon" dockApp="LinkedIn">
<img src="./images/LinkedIn.png" alt="LinkedIn">
</div>
<div class="dockIcon" dockApp="Excel">
<img src="./images/Excel.png" alt="Excel">
</div>
<div class="dockIcon-editable">
</div>
<div class="dockLine">|</div>
<div class="dockIcon" dockApp="Setting">
<img src="./images/Setting.png" alt="Setting">
</div>
<div class="dockIcon" dockApp="Bin">
<img src="./images/Bin.png" alt="Bin">
</div>
</div>
</div>
<!-- Dock Container Over-->
</div>
<script src="./baseFunctions.js"></script>
<script src="./appFiles/jira/jira.js"></script>
<script src="./appFiles/excel/excel.js"></script>
<script src="./appFiles/camera/indexDB.js"></script>
<script src="./appFiles/camera/camera.js"></script>
<script src="./appFiles/whiteBoard/whiteBoard.js"></script>
<script src="./appFiles/music/music.js"></script>
<script src="./appFiles/linkedIn/linkedIn.js"></script>
<script src="./appFiles/setting/setting.js"></script>
<script src="./appFiles/bin/bin.js"></script>
<script src="./appFiles/calculator/calculator.js"></script>
<script src="./appFiles/gallery/gallery.js"></script>
<script src="./appFiles/cupHead/cupHead.js"></script>
<script src="./appFiles/pokemonCard/pokemonCard.js"></script>
<script src="./appFiles/netflix/netflix.js"></script>
<script src="./appFiles/books/books.js"></script>
<script src="main.js"></script>
</body>
</html>