-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="pt-br">
<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>NoteHub</title>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./src/style.css" />
<link
rel="shortcut icon"
href="./src/assets/favicon2.png"
type="image/x-icon"
/>
</head>
<body>
<nav class="navBar">
<img class="logo" src="./src/assets/logo.png" alt="Logo" />
<button class="addNewNote">
<ion-icon name="add"></ion-icon>
</button>
</nav>
<p class="txt-newNote">
Clique no botão "<ion-icon name="add"></ion-icon>"
</p>
<main class="master"></main>
<footer>
<a href="https://carloscunha611.github.io/portfolio/" target="_blank">
<img
class="logoC"
src="./src/assets/logoC.png"
alt="Logo do Portfólio"
/>
</a>
<div>
<p>
Dev. by <span>C</span>arlos <span>C</span>unha <span>J</span>r. ©
2023
</p>
</div>
</footer>
<!-- scripts -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/marked/3.0.8/marked.min.js"
defer
></script>
<script src="./src/main.js" defer></script>
<script
type="module"
src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"
></script>
</body>
</html>