-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
94 lines (83 loc) · 3.54 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
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
<!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" />
<link rel="stylesheet" href="reset.css">
<title>Portfolio</title>
<link rel="shortcut icon" type="image/icon" href="img/r.png" />
<link rel="stylesheet" href="css/about.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
rel="stylesheet">
</head>
<body>
<!--------------------------nav bar---------------------------------------->
<header class="header">
<a href="#" class="header-link header-logo">
Ruama
<img src="img/bb.gif" />
</a>
<div class="responsive only-mobile">
<div class="line one"></div>
<div class="line two"></div>
<div class="line three"></div>
</div>
<nav class="header-nav only-desktop">
<ul class="nav-list">
<li><a class="header-link" href="index.html">Home</a></li>
<li><a class="header-link" href="about.html">About me</a></li>
<li><a class="header-link" href="cv.html">Education</a></li>
<li><a class="header-link" href="projects.html">Projects</a></li>
<li><a class="header-link" href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="header-overlay">
<a class="header-link" href="index.html">Home</a>
<a class="header-link" href="about.html">About me</a>
<a class="header-link" href="cv.html">Education</a>
<a class="header-link" href="projects.html">Project</a>
<a class="header-link" href="contact.html">Contact</a>
</div>
<!----------------------------end of navbar---------------------------------------->
</header>
<section class="about">
<div class="title">
<h1>My History With Tech</h1>
</div>
<div class="about-content">
<div class="left">
<img src="img/avatar2.jpg" alt="" />
</div>
<div class="right">
<h3>About me</h3>
<p> Hi! I'm Ruama and I'm trying a career transition to Tech! I
love working in a team, I have a lot of experience with it in my old job as a teacher. <br>
I study systems analysis and development at the best college in my region. I am more than ready to
face and solve technology challenges.
<div class="btn-download"> <a href="cv/ruama.pdf" target="_blank" download="ruama.pdf"> Download CV</a>
</div>
</p>
</div>
</div>
</section>
<!-----Footer-->
<footer>
<div class="footer-bottom">
<p> Developed & Programmed by Ruama Maranhão </p>
<div class="footer-bottom">
<p>Copyright © 2022 RM</p>
</div>
<div class="footer-last">
<a href="https://github.com/gothvadeer" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</footer>
<!-----End of footer-->
<script src="js/nav.js"></script>
</body>
</html>