-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (52 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" href="./images/favicon.ico" type="image/x-icon">
<style>
.image-container {
text-align: center;
}
img {
max-width: 100%;
}
body{
background-color: black;
}
img {
margin-top: 20px;
margin-bottom: 10px;
}
.button {
background-color: #13aa52;
border: 1px solid #13aa52;
border-radius: 4px;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-size: 16px;
font-weight: 400;
outline: none;
outline: 0;
padding: 10px 25px;
text-align: center;
}
@media (min-width: 768px) {
.button {
padding: 10px 30px;
}
}
</style>
</head>
<body>
<div class="image-container">
<img src="images/brazil.svg" width="330px" height="200px" alt="Português">
<br>
<a href="portuguese.html"><button class="button" role="button">Português</button></a>
<br>
<img src="images/usa.svg" width="330px" height="200px" alt="English">
<br>
<a href="english.html"><button class="button" role="button">English</button></a>
</div>
</body>
</html>