-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 839 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>Document</title>
<style>
html,body {
/* background-color: lightcoral; */
margin: 0;
padding: 0;
height: 1000px;
}
.container {
padding: 20px;
}
.link {
display: block;
margin-bottom: 30px;
font-size: 20px;
}
</style>
</head>
<body>
<div> https://samssweiss.netlify.app/ </div>
<div> https://samssweiss.netlify.app/copy-file </div>
<div class="container">
<a class="link" href="./copy-file.html">copy file</a>
<a class="link" href="./test.html">click</a>
<a class="link" href="./test2.html">click2</a>
</div>
</body>
</html>