-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
executable file
·128 lines (104 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>OpenTerm</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Terminal -->
<div class="container">
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:200' rel='stylesheet' type='text/css'>
<div class="term-container">
<div class="window">
<div class="handle">
<div class="buttons">
<button class="close-btn">
</button>
<button class="minimize">
</button>
<button class="maximize">
</button>
</div>
<span class="title"></span>
</div>
<div class="terminal terminal-black"></div>
</div>
<div class="message">
<p>The Terminal is closed</p><span><button class="openbtn">Open Terminal</button></span>
</div>
</div>
<!-- Home -->
<div class="container">
<div class="window-home item-minimized">
<div class="handle-home">
<div class="buttons-home">
<button class="close-home">
</button>
<button class="minimize-home">
</button>
<button class="maximize-home">
</button>
</div>
<span class="title-home"></span>
</div>
<div class="home">
<div ><img src="icons/OpenCode.png" alt="Smiley face" height="42" width="42" class="home-about">
<p class="about-name">About.txt</p>
</div>
</div>
</div>
<!-- <div class="message">
<p>The Terminal is closed</p><span><button class="openbtn">Open Terminal</button></span>
</div> -->
</div>
<!-- About -->
<div class="container">
<div class="window-about item-minimized">
<div class="handle-about">
<div class="buttons-about">
<button class="close-about">
</button>
<button class="minimize-about">
</button>
<button class="maximize-about">
</button>
</div>
<span class="title-about"></span>
</div>
<div class="about">
<div class="about-page">
<p style="margin:5px;"><span style="font-size: 30px;"><strong>OpenCode</strong></span><br><br> OpenCode is a month long Open Source competition held by the FOSS wing of IIIT-Allahabad.
<br> It is considered as IIIT-A's very own mini GSoC. It started with the aim to get more people into the world of opensource.
<br> The top five winners will get awesome prizes along with a direct entry to Hack in the North.
</p>
</div>
</div>
</div>
<!-- <div class="message">
<p>The Terminal is closed</p><span><button class="openbtn">Open Terminal</button></span>
</div> -->
</div>
<!-- Dock -->
<div class="dock">
<span><img src="icons/terminal.png" alt="Smiley face" height="42" width="42" class="dock-item"></span>
<span><img src="icons/home.svg" alt="Smiley face" height="42" width="42" class="dock-home"></span>
</div>
<div class="block-container">
<ul>
<li class="holder block">THEMES</li>
<div class="color-block block-display">
<li class="block black theme-selected">BLACK</li>
<li class="block white">WHITE</li>
<li class="block green">GREEN</li>
</div>
</ul>
<ul>
</ul>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>