-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (109 loc) · 5.26 KB
/
index.html
File metadata and controls
110 lines (109 loc) · 5.26 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Site de portfolio profissional digital">
<link rel="shortcut icon" href="image/portfolio.png" type="image/x-icon">
<link rel="stylesheet" href="./style/index.css">
<link rel="stylesheet" href="./style/responsivo.css">
<title>Portfólio</title>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
</head>
<body>
<!--Barra de navegação do site-->
<header>
<nav>
<h2 id="perfil">Perfil</h2>
<ul id="menu">
<li><a href="#home">Ínicio</a></li>
<li><a href="#sobre">Sobre</a></li>
<li><a href="#projetos">Projetos</a></li>
<li><a href="#contato" id="contact">Contato</a></li>
</ul>
</nav>
</header>
<!--Seção home-->
<main id="home">
<section id="inicio">
<div class="headline">
<h2>Eu sou</h2>
<h1>Davi Lima</h1>
<p>
Um dedicado estudante de Ciência da Computação com uma paixão incansável por tecnologia e inovação. Neste espaço, compartilho meu entusiasmo e habilidades através de projetos que refletem minha jornada e crescimento no universo da programação e desenvolvimento web.
</p>
</div>
<div class="imagem">
<img src="image/Imagem do WhatsApp de 2025-06-12 à(s) 13.23.52_6df50c73.jpg" alt="foto whatzapp">
</div>
</section>
<section id="sobre">
<div id="resumo">
<h2>Resumo</h2>
<p>
Estudante de Ciência da Computação na Universidade Pitágoras Unopar Anhanguera. 💻 Entusiasta de novastecnologias, sempre buscando aprender eaplicar conhecimentos em projetospráticos. 🌱 Comprometido com odesenvolvimento contínuo e a busca porsoluções criativas e eficientes.
</p>
<button id="btt-cv"><a href="https://drive.google.com/file/d/1Dx2DvjJkmiJzBySkqAp4SkLwGa9BQgx_/view?usp=drivesdk" target="_blank">Acessar Currículo</a></button>
</div>
<div id="resumo2">
<button onclick="soft()" id="soft"><h3 id="s">Soft Skills</h3></button>
<button onclick="hard()" id="hard"><h3 id="h">Hard Skills</h3></button>
<ul id="tt1">
<li>Trabalho em equipe</li>
<li>Pontualidade</li>
</ul>
<ul id="tt2">
<li>Html 5</li>
<li>CSS 3</li>
<li>JavaScript</li>
</ul>
</div>
</section>
<!--Seção projetos-->
<section id="projetos">
<h2>Projetos</h2>
<p>
Aqui, você encontrará uma coleção dos meus principais projetos, desde aplicativos Android até websites responsivos. Cada projeto é uma peça do meu aprendizado e dedicação à excelência em desenvolvimento.
</p>
<!--Projeto 1-->
<div id="projeto">
<h3>Projeto Android</h3>
<p id="tt">Site de teste criado para praticar habilidades de HTML5 e CSS3.</p>
<a href="https://davilima-dev.github.io/projeto-android/index.html.html" target="_blank">
<img src="image" alt="">
</a>
</div>
</section>
<!--Seção Contatos com links de minhas redes socias-->
<section id="contato">
<h3>Contate-me</h3>
<p>
Se você está procurando alguém apaixonado por tecnologia para colaborar em projetos, compartilhar ideias ou apenas trocar conhecimentos, sinta-se à vontade para me contatar! Meu e-mail é <a href="mailto:dlima12435@gmail.com" id="email">dlima12435@gmail.com</a> e meu currículo é você pode me encontrar também no:
</p>
<div id="links">
<a href="https://www.linkedin.com/in/davi-lima-12428b2a2?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank">
<img src="image/linkedin32.png" alt="icone do linkedIn">
</a>
<a href="https://github.com/Davilima-dev" target="_blank">
<img src="image/github.png" alt="">
</a>
<a href="https://wa.me/559985227503" target="_blank">
<img src="image/whatsapp.png" alt="">
</a>
<a href="https://www.instagram.com/dav.ilima6/profilecard/?igsh=MWR5YmQ0NTl0MG5zZA==" target="_blank">
<img src="image/instagram.png" alt="">
</a>
</div>
<p>
Explore, inspire-se e acompanhe minha trajetória no mundo da tecnologia!
</p>
</section>
</main>
<!--rodape-->
<footer class="rodape" role="contentinfo">
<p>© 2024 Davi Lima. Todos os direitos reservados.</p>
</footer>
<script src="javascript/index.js">
</script>
</body>
</html>