-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
64 lines (54 loc) · 2.27 KB
/
about.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
<!DOCTYPE html>
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<title>Periféricas | RGSoC</title>
<meta name="viewport" content="width=device-width">
<link href="./files/style.css" rel="stylesheet">
<link href="./files/colors-dark.css" rel="stylesheet">
</head>
<body>
<header id="header">
<a href="index.html"><img alt="Periféricas | RGSoC" src="./files/logo.png"></a>
</header>
<div id="page">
<div id="sidebar">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="links.html">Links</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
<div id="content">
<h1 id="about">About</h1>
<h2>Emma Pinheiro</h2>
<p>Creator and Co-founder of Raul Hacker Club(Salvador's Hackerspace)<br>
Co-founder of LampiaoSec - Security Research Group.
She loves to study about Reverse Engineer, crypto and stegno. <br>
She wants to change the world using her programming skills.</p>
<h2> Geisa Santos </h2>
<p>I'm a 220v person. I love to learn and I’m curious about everything. <br>
I’m an Advertising and Marketing graduated, with a MBA in Systems Information
Management. Because I have suffered a lot for being a woman when I started
working in the tech market, I support several local initiatives that promote
diversify in tech. I co-organize Rails Girls since 2013 and, last year, I
started a PyLadies chapter at my city. I also teach web, social media and
entrepreneurship, once a year, at a non-profit organization for teens that
live in the suburbs.<br>
I love games, books, book clubs and study groups. You may say I'm a serial
book clubber.</p>
</div>
<footer id="footer">
<p class="copyright">Get excited and make things!</p>
<!-- Thanks to <a href="http://www.webmaster-source.com">Matt Harzewski</a> for the theme!!!</p> -->
</footer>
<script src="./files/jquery.min.js"></script>
<script src="./files/jquery.mobilemenu.min.js"></script>
<script>
$(document).ready(function(){
$('#sidebar nav ul').mobileMenu({'topOptionText': 'Menu', 'prependTo': '#sidebar nav'});
});
</script>
</body></html>