-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (103 loc) · 3.35 KB
/
index.html
File metadata and controls
125 lines (103 loc) · 3.35 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
114
115
116
117
118
119
120
121
122
123
124
125
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mark Bernardino | Portfolio</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-icons.css" rel="stylesheet">
<link href="css/templatemo-first-portfolio-style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a href="#" class="navbar-brand">Mark Bernardino</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- HERO -->
<section id="home" class="hero d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-7">
<h1>Hello, I'm Mark 👋</h1>
<h3>Computer Science Instructor | AI & Data Science</h3>
<p>I teach programming, machine learning, and data science while building intelligent systems and research projects.</p>
<a href="#projects" class="btn btn-primary">View My Work</a>
</div>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about" class="section-padding">
<div class="container">
<h2>About Me</h2>
<p>
I am a Computer Science educator and researcher specializing in:
Artificial Intelligence, Machine Learning, Data Science, and Software Development.
I teach university students and conduct research on AI-driven systems, disaster simulations, and education technology.
</p>
</div>
</section>
<!-- SKILLS -->
<section id="skills" class="section-padding bg-light">
<div class="container">
<h2>Skills</h2>
<ul>
<li>Python, Java, JavaScript</li>
<li>Machine Learning & AI</li>
<li>Data Science & Analytics</li>
<li>Web Development</li>
<li>Research & Academic Writing</li>
<li>Teaching & Curriculum Design</li>
</ul>
</div>
</section>
<!-- PROJECTS -->
<section id="projects" class="section-padding">
<div class="container">
<h2>Projects</h2>
<div class="row">
<div class="col-lg-4">
<h4>AI Disaster Simulation</h4>
<p>AI-based disaster preparedness training using simulation environments.</p>
</div>
<div class="col-lg-4">
<h4>Student Programming Analysis</h4>
<p>Research on difficulties in learning programming among CS students.</p>
</div>
<div class="col-lg-4">
<h4>Machine Learning Modules</h4>
<p>Self-paced modules for teaching ML concepts and applications.</p>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact" class="section-padding bg-light">
<div class="container">
<h2>Contact</h2>
<p>Email: mark@email.com</p>
<p>Phone: 09XXXXXXXXX</p>
<form>
<input type="text" placeholder="Your Name" class="form-control mb-3">
<input type="email" placeholder="Email" class="form-control mb-3">
<textarea class="form-control mb-3" placeholder="Message"></textarea>
<button class="btn btn-primary">Send</button>
</form>
</div>
</section>
<footer class="text-center p-3">
<p>© 2026 Mark Bernardino | Portfolio</p>
</footer>
<script src="js/bootstrap.min.js"></script>
</body>
</html>