-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
33 lines (29 loc) · 1.02 KB
/
popup.html
File metadata and controls
33 lines (29 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body>
<!-- Background image -->
<div class="background">
<div class="first">
<h2 class="for_heading">This is CPP STL Sheet</h2>
<div class="button">
<a href="./Elements/Vector.html">Vector</a>
<a href="./Elements/Queue.html">Queue</a>
<a href="./Elements/Sorting.html">Sorting</a>
<a href="./Elements/Deque.html">Deque</a>
<a href="./Elements/Set.html">Set</a>
<a href="./Elements/Stack.html">Stack</a>
<a href="./Elements/Array.html">Array</a>
<a href="./Elements/String.html">String</a>
<a href="./Elements/Map.html">Map</a>
</div>
</div>
</div>
<script src="Script.js"></script>
</body>
</html>