-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (61 loc) · 2.88 KB
/
index.html
File metadata and controls
64 lines (61 loc) · 2.88 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
62
63
64
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title id="webTitle" data-i18n="page_title">JLBBARCO's Portfolio</title>
<link rel="stylesheet" href="src/css/style.css" media="screen" />
<link rel="stylesheet" href="src/css/tablet.css" media="(min-width: 724px)" />
<link rel="stylesheet" href="src/css/pc.css" media="(min-width: 990px)" />
<link rel="stylesheet" href="src/css/tv.css" media="(min-width: 1920px)" />
<!-- use CDN stylesheet so all free brand icons are available immediately -->
<!-- updated to latest FontAwesome and removed integrity check to avoid
accidental mismatches when the CDN updates the file. -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
crossorigin="anonymous" />
<!-- Inicialmente use o ícone dark para reduzir flash enquanto o script ajusta conforme preferência -->
<link rel="shortcut icon" href="src/assets/favicon/code-light.svg" type="image/x-icon" id="favicon">
<script src="src/js/script.js" defer></script>
<script src="src/js/header.js" defer></script>
<script src="src/js/projects.js" defer></script>
<script src="src/js/technologies.js" defer></script>
<script src="src/js/about.js" defer></script>
<script src="src/js/formations.js" defer></script>
<script src="src/js/more.js" defer></script>
<script src="src/js/contact.js" defer></script>
<script src="src/js/translate.js" defer></script>
</head>
<body data-github-owner="JLBBARCO" data-github-repo="portfolio">
<a id="skip_link" class="skip-link" href="#main" data-i18n="link_skip_to_main" aria-label="Skip to main content">Pular
para o
conteúdo principal</a>
<main id="main">
<section id="Home">
<div>
<h2 id="welcome_title" data-i18n="section_home_title">Welcome to My Portfolio</h2>
<p id="welcome_message" data-i18n="section_home_message">I'm a developer passionate about creating innovative
web
solutions</p>
</div>
</section>
</main>
<footer>
<article id="accessibility">
<button id="accessibility-button" aria-expanded="false" aria-controls="accessibility-menu">
<i class="fa-solid fa-universal-access icon"></i>
</button>
<div id="accessibility-menu" aria-hidden="true">
<button id="increase-font" data-i18n="aria_increase_font" data-i18n-attr="aria-label">
<i class="fa-solid fa-increase-font icon"></i>
</button>
<button id="decrease-font" data-i18n="aria_decrease_font" data-i18n-attr="aria-label">
<i class="fa-solid fa-decrease-font icon"></i>
</button>
<button id="reset-font" data-i18n="aria_reset_font" data-i18n-attr="aria-label">
<i class="fa-solid fa-text-slash icon"></i>
</button>
</div>
</article>
</footer>
</body>
</html>