-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5.html
More file actions
48 lines (46 loc) · 750 Bytes
/
5.html
File metadata and controls
48 lines (46 loc) · 750 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
body{
background-color: turquoise;
}
.link{
text-decoration: none;
color: black;
font-size: 18px;
border: 2px solid crimson;
padding: 16px 50px;
text-align: center;
}
.link:hover{
background: crimson;
color: white;
}
h1{
text-align: center;
color: crimson;
}
.butt{
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<h1 >CV Linking</h1>
<br>
<div class="butt" style="margin-top: 50px;">
<div>
<a href="files/res.pdf" class="link">Resume</a>
</div>
</div>
<div class="butt" style="margin-top: 100px;">
<div>
<a href="6.html" class="link">Experiment 6</a>
</div>
</div>
</body>
</html>