kuoramwoyo commited on
Commit
7e7ee59
·
verified ·
1 Parent(s): 85a3e28

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +38 -0
index.html CHANGED
@@ -17,21 +17,59 @@
17
  padding: 20px;
18
  border-radius: 10px;
19
  display: inline-block;
 
20
  }
21
  .status {
22
  font-size: 20px;
23
  font-weight: bold;
24
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  </style>
26
  </head>
27
  <body>
28
  <h1>Bem-vindo ao Servidor de Minecraft</h1>
 
 
 
 
 
 
29
  <div class="server-info">
30
  <p><strong>Nome:</strong> THE DWELLERS</p>
31
  <p><strong>IP:</strong> THEDWELLERS_.aternos.me:24354</p>
32
  <p class="status">Status: <span id="server-status">Carregando...</span></p>
33
  </div>
34
 
 
 
 
 
 
35
  <script>
36
  async function fetchServerStatus() {
37
  try {
 
17
  padding: 20px;
18
  border-radius: 10px;
19
  display: inline-block;
20
+ margin-bottom: 20px;
21
  }
22
  .status {
23
  font-size: 20px;
24
  font-weight: bold;
25
  }
26
+ .images {
27
+ display: flex;
28
+ justify-content: center;
29
+ gap: 20px;
30
+ margin-bottom: 20px;
31
+ }
32
+ .images img {
33
+ width: 200px;
34
+ height: auto;
35
+ border-radius: 10px;
36
+ }
37
+ .balloons {
38
+ display: flex;
39
+ justify-content: center;
40
+ gap: 20px;
41
+ }
42
+ .balloons a {
43
+ display: inline-block;
44
+ background: #9146FF;
45
+ color: white;
46
+ padding: 10px 20px;
47
+ border-radius: 10px;
48
+ text-decoration: none;
49
+ font-size: 18px;
50
+ font-weight: bold;
51
+ }
52
  </style>
53
  </head>
54
  <body>
55
  <h1>Bem-vindo ao Servidor de Minecraft</h1>
56
+
57
+ <div class="images">
58
+ <img src="imagem1.jpg" alt="Imagem 1">
59
+ <img src="imagem2.jpg" alt="Imagem 2">
60
+ </div>
61
+
62
  <div class="server-info">
63
  <p><strong>Nome:</strong> THE DWELLERS</p>
64
  <p><strong>IP:</strong> THEDWELLERS_.aternos.me:24354</p>
65
  <p class="status">Status: <span id="server-status">Carregando...</span></p>
66
  </div>
67
 
68
+ <div class="balloons">
69
+ <a href="https://twitch.tv/seu_canal" target="_blank">Canal da Twitch 1</a>
70
+ <a href="https://twitch.tv/seu_canal2" target="_blank">Canal da Twitch 2</a>
71
+ </div>
72
+
73
  <script>
74
  async function fetchServerStatus() {
75
  try {