-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (83 loc) · 5.36 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"
/>
<link rel="stylesheet" href="./styles/reset.css">
<link rel="stylesheet" href="./styles/global.css">
<meta name="description" content="Fala ai! Meu nome é Matheus, desenvolvedor Front End, atualmente cursando o segundo semestre de ADS (Análise e Desenvolvimento de Sistemas) na UNINASSAU. Tenho experiência com HTML, CSS, JavaScript, Bootstrap, Github, Git e estou estudando sobre React e outras bibliotecas e frameworks.">
<meta name="keywords" content="portifolio, portifolio front-end, portifolio front end, portifolio simples, portifolio simples front end">
<title>MatheusFrancaDEV</title>
</head>
<body class="dark-mode">
<header class="header d-flex align-items-center justify-content-between p-4">
<img src="./public/assets/MatheusFrançaDEV_logo.svg" class="logo" alt="Logo do portifolio Matheus Franca Dev">
<nav class="nav-bar">
<button class="btn-mobile" id="btn-mobile" aria-label="menu hamburguer">
<span class="hamburguer" id="hamburguer"></span>
</button>
<ul class="menu d-flex gap-4">
<li><a class="p-2 fw-bold" href="#about">Sobre</a></li>
<li><a class="p-2 fw-bold" href="#experience">Experiência</a></li>
<li><a class="p-2 fw-bold" href="#projects">Projetos</a></li>
</ul>
</nav>
</header>
<div class="container d-flex flex-column p-2 justify-content-center align-items-center ">
<div class="content d-flex gap-80px flex-column p-3">
<div class="about d-flex gap-4" id="about">
<img src="./public/assets/profile-photo.jpg" class="circle" alt="Foto de perfil">
<div class="about-descri">
<h1 class="fw-bold text-white">Fala aí! <br> Meu nome é <br> <span>Matheus</span></h1>
<p class="about-me">Desenvolvedor Front End, atualmente cursando o segundo semestre de ADS (Análise e Desenvolvimento de Sistemas) na UNINASSAU. Tenho experiência com HTML, CSS, JavaScript, Bootstrap, Github, Git e estou estudando sobre React e outras bibliotecas e frameworks.</p>
<div class="btn-group d-flex gap-3">
<a class="btn btn-light text-black" href="https://falaaimatheus.github.io/" target="_blank" rel="external" role="button">GitHub</a>
<a class="btn btn-primary text-black" href="https://br.linkedin.com/in/matheus-fran%C3%A7a13" target="_blank" rel="external" role="button">LinkedIn</a>
</div>
</div>
</div>
<div class="experiences" id="experience">
<h2 class="fw-bold text-white">Experiências</h2>
<div class="experience-container d-flex p-4 flex-column gap-4">
<div class="exp d-flex flex-column text-white gap-2">
<h3>Desenvolvedor Front End I · Grupo de Comunicação O POVO</h3>
<p class="fw-bold">
<span>Nov. 2023</span>
<span> - </span>
<span>Hoje</span>
</p>
<div class="line rounded"></div>
<p><strong>Grupo de Comunicação O Povo</strong> é um conglomerado de mídia cearense que atua no setor de comunicação. O grupo remonta à fundação do jornal O Povo, em 1928, pelo jornalista Demócrito Rocha, e conta atualmente com quatro emissoras de rádio, um jornal, uma TV, quatro revistas e um portal online.</p>
<div class="line rounded"></div>
<p class="fw-bold">Tecnologias: Bootstrap · Git · JavaScript · JQuery · React.js · HTML5 · CSS </p>
<div class="exp d-flex flex-column text-white gap-2">
<h3>Aprendiz · Grupo de Comunicação O POVO</h4>
<p class="fw-bold">
<span>Nov. 2022</span>
<span> - </span>
<span>Nov. 2023</span>
</p>
<div class="line rounded"></div>
<p class="fw-bold">Tecnologias: HTML5 · CSS · JavaScript</p>
</div>
</div>
</div>
</div>
<div class="projects" id="projects">
<h2 class="fw-bold text-white">Projetos</h2>
<div class="projects-container d-flex align-items-start swiper">
<div class="swiper-wrapper" id="container-project"></div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
<script type="module" src="./js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
</body>
</html>