-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
62 lines (59 loc) · 2.01 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
<!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 href="style.css" rel="stylesheet" type="text/css">
<title>My Portfolio</title>
</head>
<body>
<div class="container">
<hr id="line">
<ul id="decoration">
<li>
<div id="red"> </div>
</li>
<li>
<div id="yellow"></div>
</li>
<li>
<div id="green"></div>
</li>
</ul>
<header>
<nav class="navigation-bar">
<ul>
<li>
<a href="https://github.com/IshmaelCasky" target="_blank">GITHUB</a>
</li>
<li>
<a href="https://www.linkedin.com/in/ishmael-cascabel-25b675219/" target="_blank">LINKEDIN</a>
</li>
<li>
<a href="https://www.facebook.com/ishmael.cascabel.9/" target="_blank">FACEBOOK</a>
</li>
</ul>
</nav>
</header>
<section id="about-me">
<img src="assets/profile.jpg">
<h1>Hi I am, Ishmael Cascabel</h1>
<p>
I am a 17 years old developer ,<br> hoping to learn new things from programming,<br> aspiring to be a software engineer in the near future,<br> currently im still learning html, css and js
</p>
</section>
<div id="technologies">
<div class="tech-container">
<h1>My Techs</h1>
<p>C | Python | HTML | CSS ( Grid , Flexbox) | PHP</p>
</div>
</section>
<footer>
<p>
Ishmael © 2021-2022
</p>
</footer>
</div>
</body>
</html>