-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.93 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.93 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
<html>
<head>
<title>HTML AND BASIC CSS LAB</title>
<style>
/* CSS styles for the border */
.bordered-image {
border: 2px solid blue; /* You can change the border color and thickness */
border-radius: 5px; /* Optional: Adds rounded corners to the border */
}
</style>
</head>
<body>
<h1>Charles Montemayor</h1>
<img src="https://drive.google.com/thumbnail?id=1l6cv836kQc3L6Rmph35Jw-L2ay3wcQ__&sz=w1000" alt="Current Picture" width="300" height="300" class="bordered-image">
<p>Navigating through the academic maze and soaking up knowledge like a sponge.
My backpack is always filled with textbooks, notebooks, and a trusty laptop ready for all those assignments and research papers.
You'll often find me in the library, buried in books, or in the campus cafe, sipping on coffee and discussing the latest class topics with friends.
I'm passionate about learning and exploring new ideas, always eager to expand my horizons and deepen my understanding of the world around me.
Whether it's dissecting Shakespearean sonnets or unraveling the mysteries of quantum mechanics, I'm up for the challenge! </p>
<h2>Things that I like (hobbies)</h2>
<p>As a student ofcourse there are some extra culicural activities that I do mostly on weekends. Here are some of it:
</p>
<ul>
<li>Basketball (mostly at night)</li>
<li>Woking out at gym (afternoon)</li>
<li>Playing Valo</li>
<li>Watching kdramas/movies</li>
</ul>
<h2>My Social Account</h2>
<p>for you to know me more:</p>
<ul>
<li><a href="https://www.facebook.com/charles.montemayor.73/">Facebook</a></li>
<li><a href="https://instagram.com/montemayord1p/">Instagram</a></li>
</ul>
</body>
</html>