-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 767 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 767 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keep Params</title>
</head>
<style>
a {
padding: 5px;
border-radius: 2px;
border-style: solid;
border-color: black;
border-width: 1px;
text-decoration: none;
color: black;
}
</style>
<body>
<p>Botões para testes</p>
<a class="checkout" href="https://google.com/">Sem parâmetros no href</a>
<a class="checkout" href="https://google.com/?ex=1">Com um parâmetro no href</a>
<a class="checkout" href="https://google.com/?ex=1&github=true">Com dois parâmetros no href</a>
<script src="./keep-params.js"></script>
</body>
</html>