-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (99 loc) · 3.74 KB
/
index.html
File metadata and controls
113 lines (99 loc) · 3.74 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
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
113
<!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>Ben Abu Bakr Beltran - Portfolio</title>
<style>
body, html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
line-height: 1.6;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
max-width: 800px; /* or any value you deem fit */
margin: 0 auto;
padding: 20px;
}
header {
background-color: #f4f4f4;
padding: 10px 0;
width: 100%;
text-align: center;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #333;
}
section {
margin: 20px 0;
text-align: center;
}
img.profile-pic {
width: 200px;
height: auto;
margin: 20px auto;
display: block;
}
ul {
list-style-type: none;
padding: 0;
}
#copyright {
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Ben Abu Bakr Beltran</h1>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<img src="abu.jpg" alt="Abu Bakr's Profile Picture" class="profile-pic">
<p>Hi, I'm <strong>Ben Abu Bakr Beltran</strong> — an aspiring <strong>web developer</strong> with a strong foundation in business, technology, and entrepreneurship. I'm currently <strong>front-end and full-stack development</strong> learning, using real-world experience to guide the way I <em>design and build websites</em>.
</p>
<div id="about-pararaph2">
<p>Driven by curiosity and a love for problem-solving, I'm on a journey to turn my ideas into digital products that are clean, functional, and user-focused.</p>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li><a href="https://abusayyaf.github.io/githubprojectLCT/">My Portfolio</a>: My own personal page.</li>
<li><a href="https://github.com/AbuSayyaf/githubprojectLCT">Cloning Repository</a>: How to clone repository from Learning Computer Today</li>
<!-- Add more projects as list items -->
</ul>
</section>
<section id="skills">
<h2>My Skills:</h2>
<p> HTML, CSS, Javascript, Bootstrap, Tailwind, Angular, VueJS, Laravel, React JS, React Native, MERN Stack, Figma, Sketch, Android Development, WordPress, WooCommerce, Shopify, Logo Design, Photoshop, Capcut, Canva, Filmora
</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p><a href="https://github.com/AbuSayyaf">Github AbuSayyaf</a></p>
<p><a href="mailto:inquiry@merdekainfotek.com">inquiry@merdekainfotek.com</a></p>
<p><a href="mailto:merdekainformationtekologi@gmail.com">merdekainformationtekologi@gmail.com</a>
</p>
</section>
<footer>
<p>© 2025 by <a id="copyright" href="https://www.facebook.com/abubakrsiddiqMY" target="_blank">Abu Bakr</a></p>
</footer>
</div>
</body>
</html>