-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
112 lines (110 loc) · 3.85 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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" />
<title>Brayan's Portfolio</title>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/style.production.css" />
</head>
<body onload="document.body.style.opacity='1'">
<!-- Header -->
<header class="page-header">
<h1 class="page-header_item logo_item">
<a href="index.html" role="logo"> <Brayan></a>
</h1>
<nav class="main-navigation page-header_item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a
href="index.html"
role="menuitem"
class="navigation-list_item navigation-list_item--active"
>Home</a
>
</li>
<li role="presentation">
<a
href="#"
role="menuitem"
class="navigation-list_item"
>About</a
>
</li>
<li role="presentation">
<a
href="index.html#projects-container"
role="menuitem"
class="navigation-list_item"
>Projects</a
>
</li>
<li role="presentation">
<a
href="index.html#contact-container"
role="menuitem"
class="navigation-list_item"
>Contact</a
>
</li>
</ul>
</nav>
</header>
<section class="about-container" id="about-container">
<h2 class="about-container_title">About Me</h2>
<div class="about-container_item about-container_item--left">
<p class="about-container_item--right_text">
I started my journey as a self-taught web developer four years ago
without any prior experience. Through
determination and hard work, I taught myself HTML, CSS, JavaScript,
and various programming frameworks and libraries. I learned how to
think like a programmer, and now I'm a full-time student at
CareerFoundry with plans to graduate in December 2022 and start my
first full-time role as a web developer. I want to inspire others to
pursue their passions in tech and display my skills as a web developer.
</p>
</div>
<div class="about-container_item about-container_item--right">
<img
src="img/Developer activity-pana.png"
alt="Hero image"
class="about-container_item--left_image"
/>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p>Find me on</p>
<div class="social-media">
<a href="https://github.com/Mejiabrayan/" target="_blank">
<img
class="footer-item-git"
src="img/githubRepo.svg"
alt="Github-icon"
/>
</a>
<a href="https://www.linkedin.com/in/mejiabrayan" target="_blank">
<img
class="footer-item-linkedin"
src="img/linkedIn.svg"
alt="LinkedIn-icon"
/>
</a>
</div>
</footer>
</body>
</html>