-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
111 lines (105 loc) · 3.59 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
<!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="style.css" />
<title>Frontend-Pack</title>
</head>
<body>
<div class="content-top"></div>
<header>
<div class="header-container">
<div class="header-title">
<h1 class="the-title">Frontend-Pack</h1>
</div>
<input
name="hamburger-toggle"
type="checkbox"
class="hamburger-icon"
id="hamburger-toggle"
/>
<label for="hamburger-toggle" class="hamburger-svg">
<svg class="the-hamburger" viewBox="0 0 100 80" width="30" height="30">
<rect class="rect" width="100" height="10"></rect>
<rect class="rect" y="30" width="100" height="10"></rect>
<rect class="rect" y="60" width="100" height="10"></rect>
</svg>
</label>
<div class="open-menu">
<div class="language-select">
<label class="language-label" for="Languages">Language</label>
<select name="Languages" id="language-select">
<option class="option" value="En">En</option>
<option class="option" value="Tr">Tr</option>
</select>
</div>
<a
class="github-link"
target="_blank"
href="https://github.com/omerozceylan/frontend-pack"
>
<img
class="github-icon"
src="public/github-mark-white.svg"
alt=""
/>
</a>
</div>
</div>
</header>
<section class="content">
<div class="content-container">
<div class="top-message">
What is
<a
href="https://github.com/omerozceylan/frontend-pack#readme"
target="_blank"
class="top-message-message"
>Frontend-Pack?</a
>
</div>
<div class="items-container"></div>
<!-- <div class="items">
<div class="items-img">
<img src="https://smartstore.com/media/4771/content/Bootstrap_Logo_2000x615.jpg" class="img">
</div>
<div class="items-button-container">
<div class="items-title">React</div>
<button class="items-info-button">i</button>
</div>
</div> -->
</div>
</section>
<!-- position: fixed elements can go outside --->
<dialog id="modal" class="modal pop-up">
<div class="pop-up-inside">
<div class="pop-up-info"></div>
<div open class="pop-up-button-section">
<div></div>
<button class="pop-up-button">tamam</button>
</div>
</div>
</dialog>
<div class="show-code-container">
<div class="show-code-div">
<div class="show-code-div-inner">
<div class="tooltip">
<div class="show-code-div-icon">
<span class="tooltiptext" id="myTooltip">Copy to clipboard</span>
<img src="copy.svg" class="copy-svg" alt="" />
</div>
</div>
<div class="show-code-div-icon">
<img src="delete.svg" class="delete-svg" />
</div>
<div class="show-code-inner-text"></div>
</div>
</div>
</div>
<script type="module" src="./src/data.js"></script>
<script type="module" src="./src/popup.js"></script>
<script type="module" src="./src/main.js"></script>
</body>
</html>