-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtipografia.html
More file actions
42 lines (41 loc) · 1.33 KB
/
tipografia.html
File metadata and controls
42 lines (41 loc) · 1.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
rel="stylesheet"
/>
<style>
@font-face {
font-family: "MiFuente";
src: url(https://fonts.gstatic.com/s/inter/v18/UcCm3FwrK3iLTcvnUwQT9mI1F54.woff2)
format("woff2");
}
p {
font-family: "MiFuente";
font-size: 20px;
font-weight: 400;
/* font-style: oblique; */
/* text-transform: capitalize; */
/* letter-spacing: 1rem; */
/* word-spacing: 3rem; */
/* text-indent: 3rem; */
white-space: pre-wrap;
}
</style>
</head>
<body>
<h1>Tipografia</h1>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Corporis cum
consectetur et neque consequatur excepturi reprehenderit placeat,
temporibus officia inventore? Assumenda nam illum voluptatibus quo
necessitatibus reiciendis eveniet voluptatum repellat.
</p>
</body>
</html>