-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (98 loc) · 4.45 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
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
111
112
113
114
115
116
<!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">
<!--### Import Poppins Font from Google ###-->
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
</style>
<!--### Import Font Awesome CDN ###-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--### TailwindCSS CDN ###-->
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
<!--### CSS File ###-->
<link rel="stylesheet" href="css/style.css" type="text/css">
<!--### Webpage title ###-->
<title>Portfolio - Bruno Oliveira</title>
<!--### Lottie Animation ###-->
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
</head>
<body class="dark-theme">
<!-- Header Section -->
<menu>
<ul class="menu-itens">
<li><a href="#" class="li-iten-home">Home</a></li>
</ul>
<!-- <ul class="menu-itens"> -->
<!-- <div>
<li><i class="fas fa-toggle-off fa-xl"></i></li>
</div> -->
<!-- <li class="li-iten"><a href="#about">About</a></li>
<li class="li-iten"><a href="#skills">Skills</a></li>
<li class="li-iten"><a href="#portfolio">Portfolio</a></li>
<li class="li-iten"><a href="#contact">Contact</a></li>
<li><button class="button" href="#">Resume</button></li> Goes to another page -->
</ul>
</menu>
<div class="container row dark-theme">
<div class="header-left-side column dark-theme">
<p>Hi there! I'm</p>
<h1>Bruno Oliveira</h1>
<p>I lives in Piauí - Brasil. And I'm a</p>
<h1>Full-Stack Developer</h1> <br>
<button class="button button-dark-theme margin-top-20px" onclick="location.href='https://wa.me/5586998063078?text=Opa%2C+encontrei+voc%C3%AA+pelo+seu+site%21+Podemos+conversar%3F'">Contact Me</button>
</div>
<lottie-player src="https://assets7.lottiefiles.com/packages/lf20_frvnyetk.json" background="transparent"
speed="0.4" class="lottie" loop autoplay></lottie-player>
<div class="scroll">
<!-- <lottie-player src="
https://assets3.lottiefiles.com/packages/lf20_xddbtikg.json" background="transparent" speed="2"
class="scroll-iten" loop autoplay></lottie-player> -->
</div>
</div>
<!-- About Me Section -->
<!-- <section id="about">
About Me Section! <br>
Prata Medal PUC-Goias.
</section> -->
<!-- Skills Section -->
<section id="skills">
Backend: PHP - Laravel<br>
Frontend: VueJs - Vuetify and NuxtJs<br>
Mobile: Flutter<br>
Database: MySql
</section>
<!-- Portfolio Section -->
<!-- <section id="portfolio" class="cards">
<project-card></project-card>
</section> -->
<!-- Contact Section -->
<!-- <section id="contact">
Basic contact form to send me an email and a button to a full form in the offer page <br>
</section> -->
<!-- Footer Section -->
<footer class="container row dark-theme footer">
<div class="padding-top-10px"> Built with
<span class="fa-brands fa-html5 fa-xl padding-left-right-5px"></span>
<span class="fa-brands fa-css3-alt fa-xl padding-left-right-5px"></span>
<span class="fa-brands fa-js-square fa-xl padding-left-right-5px"></span>
by me
<a href="#">
<span class="fa-solid fa-face-smile-wink fa-xl padding-left-right-5px"></span>
</a>
</div>
<div class="padding-top-10px">
Find me on:
<a class="dark-theme padding-left-right-5px" href="https://github.com/BdsOliveira" target="_blank"><i
class="fa-brands fa-github fa-2xl"></i></a>
<a class="dark-theme padding-left-right-5px" href="https://www.linkedin.com/in/bruno-oliveira/"
target="_blank"><i class="fa-brands fa-linkedin fa-2xl"></i></a>
</div>
</footer>
<script src="js/projectCard.js" type="module"></script>
</body>
</html>