-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmay.html
More file actions
61 lines (61 loc) · 1.97 KB
/
may.html
File metadata and controls
61 lines (61 loc) · 1.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<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" />
<title>Calendar</title>
<link href="style.css" rel="stylesheet" />
<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=Fredoka+One&family=Russo+One&display=swap"
rel="stylesheet"
/>
<script
type="module"
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"
></script>
</head>
<body>
<header class="header">
<div class="header-logo">
<img
class="header-img"
src="https://img.freepik.com/free-vector/calendar-header-2022-number-colorful-abstract-color-paint-brush-strokes-happy-2022-new-year-colorful-background_87521-3053.jpg?w=2000"
rel="2022-img"
/>
</div>
<div class="title">
<p class="main-title">Calendar</p>
</div>
<div class="infos">
<a
class="logos-nav"
rel="instagramprofile"
href="https://www.instagram.com/paulorodrigues18/"
target="_blank"
><ion-icon class="logos" name="logo-instagram"></ion-icon
></a>
<a
class="logos-nav"
rel="githubprofile"
href="https://github.com/Neticz0r"
target="_blank"
><ion-icon class="logos" name="logo-github"></ion-icon
></a>
<a
class="logos-nav"
rel="linkedinprofile"
href="https://www.linkedin.com/in/paulo-rodrigues-335b06250/"
target="_blank"
><ion-icon class="logos" name="logo-linkedin"></ion-icon
></a>
</div>
</header>
</body>
</html>