forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 730 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Tab Handling and Anchor Links - Index</title>
<style type="text/css">
body {
margin: 0;
}
ul {
list-style: none;
padding: 0;
margin: 0;
background-color: #333;
}
li {
display: inline;
}
li>a {
display: inline-block;
padding: 50px;
color: white;
text-decoration: none;
}
h1 {
text-align: center;
}
</style>
</head>
<body>
<nav>
<ul>
<li>
<a id="users" href="users.html" target="_blank">Users</a>
</li>
<li>
<a id="google" href="https://www.google.com/">Google</a>
</li>
</ul>
</nav>
<h1>
Hello World
</h1>
</body>
</html>