-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (35 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Choose Font</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans" rel="stylesheet">
<style>
a {
color: black;
text-decoration: none; /* no underline */
}
h3 {
width: fit-content;
border: 1px solid black;
padding: 5px;
}
h3:hover {
width: fit-content;
border: 1px solid black;
padding: 5px;
background: black;
color: white;
cursor: pointer;
}
</style>
</head>
<body>
<a href="./F1/index.html"><h3 style="font-family: 'Montserrat'">Montserrat</h3></a>
<a href="./F2/index.html"><h3 style="font-family: 'IBM Plex Sans', sans-serif;">IBM Plex</h3></a>
<a href="./F3/index.html"><h3 style="font-family: 'Lato'" >Lato</h3></a>
</body>
</html>