-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (116 loc) · 4.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Draggable Cards</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="icon" href="./statics/imgs/logo.jpg">
</head>
<body>
<div>
<nav>
<div class="logo">
<!--img src="https://i.pinimg.com/564x/b2/a0/3f/b2a03fbd31200df2c83c853d600587a9.jpg" alt=""-->
<img src="./statics/imgs/logo.jpg" alt="">
<h4>ㅤㅤㅤㅤExample | Server Hosting Manager</h4>
</div>
</nav>
</div>
<div class="header-container">
<h1>Draggable Cards</h1>
<p>Drag and drop the cards to change their order.</p>
<p>Refresh the page to see the changes.</p>
<p>View this proyect in <b>Github</b> | <a href="https://github.com/Happyuky7/Draggable-Cards-in-web">Click Here</a></p>
</div>
<div class="btn-reset-container">
<button id="clear-storage-btn" class="clear-btn">Borrar Local Storage</button>
</div>
<div class="card-container">
<div class="card" draggable="true" data-id="card-1">
<h3>Server 1 | Web Server</h3>
<p>Description: Your server description :D</p>
<p>IP Address: localhost:3000</p>
<p>RAM: 2GB</p>
<p>SSD: 20GB</p>
<p>CPU: Intel Core i5</p>
</div>
<div class="card" draggable="true" data-id="card-2">
<h3>Server 2 | Discord BOT</h3>
<p>Description: Your server description :D</p>
<p>IP Address: 127.0.0.54:7777</p>
<p>RAM: 1GB</p>
<p>SSD: 10GB</p>
<p>CPU: AMD Ryzen 7</p>
</div>
<div class="card" draggable="true" data-id="card-3">
<h3>Server 3 | Minecraft Server Java</h3>
<p>Description: Minecraft server for friends.</p>
<p>Version: 1.20.1</p>
<p>IP Address: miami.hosting.com:25577</p>
<p>RAM: 4GB/16GB</p>
<p>SSD: 10GB/64GB</p>
<p>CPU: 70%/100% | Cores: 5</p>
<p>CPU Type: AMD Ryzen 7 5800X</p>
</div>
<div class="card" draggable="true" data-id="card-4">
<h3>Server 4 | Minecraft Server Java</h3>
<p>Description: Minecraft Proxy Server Java</p>
<p>Version: Waterfall-1.20.1 </p>
<p>IP Address: mc.kaory.xyz</p>
<p>RAM: 1GB/2GB</p>
<p>SSD: 2GB/12GB</p>
<p>CPU: 20%/100% | Cores: 2</p>
<p>CPU Type: AMD Ryzen 9 5800X</p>
</div>
<div class="card" draggable="true" data-id="card-5">
<h3>Server 5 | ARK Server</h3>
<p>Description: ARK server for friends.</p>
<p>IP Address: arkserver.domain.com:8888</p>
<p>RAM: 0GB/8GB</p>
<p>SSD: 50GB/120GB</p>
<p>CPU: 0%/100% | Cores: 4</p>
<p>CPU Type: AMD Ryzen 9 5800X</p>
<h2>Server Offline | NOT PAYED</h2>
</div>
<div class="card" draggable="true" data-id="card-6">
<h3>Server 6 | Minecraft Server Java</h3>
<p>Description: Minecraft pvp server , PRACTICE server NA</p>
<p>Version: 1.8.8</p>
<p>IP Address: unknown-hostname</p>
<p>RAM: 1GB/4GB</p>
<p>SSD: 10GB/32GB</p>
<p>CPU: 20%/150% | Cores: 7</p>
<p>CPU Type: AMD Ryzen 9 7900X</p>
</div>
<div class="card" draggable="true" data-id="card-7">
<h3>Server 7 | Minecraft Server Geyser Proxy</h3>
<p>Description: Minecraft Geyser Proxy server</p>
<p>Version: GeyserMC-1.20.1</p>
<p>IP Address: mc.kaory.xyz:25581</p>
<p>RAM: 1.5GB/1GB</p>
<p>SSD: 3GB/12GB</p>
<p>CPU: 50%/150% | Cores: 2</p>
<p>CPU Type: AMD Ryzen 3 3200G</p>
</div>
</div>
<div class="footer-separator"></div>
<div class="footer-container">
<footer>
<p>
</br>
Created by <a href="http://github.com/Happyuky7">Happyuky7</a>
<br>
</br>
<a href="http://github.com/Happyuky7">Github</a> | <a href="http://twitter.com/Happyuky7">Twitter</a> | <a href="https://www.instagram.com/happyuky7/">Instagram</a>
<br>
</br>
View This Proyect in <b>Github</b> | <a href="https://github.com/Happyuky7/Draggable-Cards-in-web">Click Here</a>
</br>
</br>
</p>
</footer>
</div>
<script src="js/script.js"></script>
</body>
</html>