-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 1.61 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/main.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap" rel="stylesheet" />
<title>Profile Card - Jessica Peixoto</title>
</head>
<body>
<div class="content">
<section class="glass" data-tilt data-tilt-glare data-tilt-max-glare="0.8">
<header>
<img src="./assets/avatar.jpg" alt="avatar" class="avatar" />
<h1>JESSICA PEIXOTO</h1>
<p>Goiânia, GO</p>
</header>
<main>
<p>Desenvolvedora front-end web e designer de interfaces de usuário</p>
<div class="socialmedia">
<a href="https://www.linkedin.com/in/jessicafpx/" target="_blank" id="linkedin">
<img src="./assets/linkedin.svg" alt="linkedin">
LinkedIn
</a>
<a href="https://github.com/jessicafpx" target="_blank">
<img src="./assets/github.svg" alt="github">
GitHub
</a>
</div>
</main>
<footer>
<h3>SKILLS</h3>
<div class="line">
<h5>JavaScript</h5>
<h5>TypeScript</h5>
<h5>React</h5>
<h5>Node</h5>
<h5>React Native</h5>
<h5>HTML</h5>
<h5>CSS</h5>
<h5>Next</h5>
<h5>Redux</h5>
</div>
</footer>
</section>
<div class="circle1"></div>
<div class="circle2"></div>
</div>
</body>
<script type="text/javascript" src="./vanilla-tilt.js"></script>
</html>