Hello! Welcome to my personal website. Here, I share my school work, activities, and projects made with HTML, CSS, and JavaScript. This website shows my interest in computers and technology, and how I like to learn and create things. Feel free to look around and see the projects I made while learning new skills.
A collection of hands-on HTML exercises completed throughout the course — from basic document structure to images and links.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Darlene R. Namayan</title> </head> <body> <!-- This is my Name --> <h1>Darlene R. Namayan</h1> </body> </html>
<body> <!-- Numbers 1-10 with colors --> <h6 style="color:#6B46C1">1</h6> <h5 style="color:#6B46C1">2</h5> <h4 style="color:#6B46C1">3</h4> <h4 style="color:#6B46C1">4</h4> <h3 style="color:#6B46C1">5</h3> <h3 style="color:#6B46C1">6</h3> <h2 style="color:#6B46C1">7</h2> <h2 style="color:#6B46C1">8</h2> <h2 style="color:#6B46C1">9</h2> <h1 style="color:#6B46C1">10</h1> </body>
<head> <title>This is a Webpage</title> <!-- Here is the title --> <style> p { color: #6B46C1; } </style> </head> <body> <p>The Title is in the Upper Tab</p> </body>
<head> <!-- Title set to current date --> <title>February 5, 2026</title> <style> p { color: #6B46C1; } </style> </head> <body> <p> When was this webpage created? Check page's title for the answer. </p> </body>
<!DOCTYPE html> <html lang="en"> <title>No_Head_Section.html</title> <!-- No Head Section --> <body> <h1 style="color:#6B46C1; font-size:60px;"> I want to Shift! </h1> </body> </html>
<!DOCTYPE html> <html lang="en"> <!-- With Head Section --> <head> <meta charset="UTF-8"> <title>Head_Section.html</title> <style> h1 { color: #6B46C1; font-size: 60px; } </style> </head> <body> <h1>I want to Shift!</h1> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Darlene R. Namayan</title> <style> h1 { color: green; } </style> </head> <body> <!-- This is my Name with style --> <h1>Darlene R. Namayan</h1> </body> </html>
<body> <!-- Numbers 1-10, each a different color --> <h6 style="color:#d31a20">1</h6> <h5 style="color:#c425a9">2</h5> <h4 style="color:#3333c6">3</h4> <h4 style="color:#164fa0">4</h4> <h3 style="color:#169ed4">5</h3> <h3 style="color:#18cf14">6</h3> <h2 style="color:#427912">7</h2> <h2 style="color:#c8cb05">8</h2> <h2 style="color:#fcce03">9</h2> <h1 style="color:#f61c04">10</h1> </body>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Darlene R. Namayan</title> </head> <body> <!-- Name with Tahoma font --> <h1 style="font-family: tahoma;"> Darlene R. Namayan </h1> </body> </html>
<body> <!-- Paragraph with different fonts --> <p style="font-family: Tahoma"> Technology continues to shape the way people communicate and learn. </p> <p style="font-family: Courier New"> Websites play an important role in sharing information across the world. </p> <p style="font-family: Gill Sans"> By learning HTML and CSS, students can create their own simple webpages. </p> <p style="font-family: Georgia"> Practicing regularly helps improve coding and problem-solving skills. </p> <p style="font-family: Times New Roman"> These skills are useful for school projects and future tech careers. </p> </body>
<body> <!-- Book title & author underlined, adjectives bolded & italicized --> <p> The book <u>Pride and Prejudice</u> by <u>Jane Austen</u> is a <b><i>classic</i></b> novel... </p> </body>
<body> <!-- Each letter: different heading size --> <h1>D</h1> <h2>A</h2> <h3>R</h3> <h4>L</h4> <h5>E</h5> <h6>N E</h6> </body>

<p>1<sup>2</sup> = 1</p> <p>2<sup>2</sup> = 4</p> ... (continues to 20² = 400)

<h1>Original List</h1> <p>Maria<sub>6</sub><br> Alan<sub>1</sub></p> <h1>Alphabetized</h1>

<p> Learning HTML is the first step...</p> <p> CSS adds style and design...</p>

<ol><li>Boil water</li></ol> <ul><li>Mango</li></ul>

<h1>Web Development</h1> <hr width="100%"> <p>Web development is the process...</p>

<pre> Name : Darlene R. Namayan Course : BS Information Technology </pre>

<blockquote>The only way to do great work is to love what you do.</blockquote> <cite>— Steve Jobs</cite>

<del>Mathematics</del> <ins>Web Development</ins>

<dl> <dt>HTML</dt> <dd>HyperText Markup Language</dd> ... (5 items total) </dl>

<address style="float:left;"> Darlene R. Namayan<br> 123 Mango St., Davao City </address> <address style="text-align:center;"> Prof. Juan dela Cruz </address>

<p><abbr title="HyperText Markup Language"> HTML</abbr></p><br><br> ... (10 items total)

<a href="https://www.google.com">Google</a><br> <a href="https://www.yahoo.com">Yahoo</a><br> <a href="https://www.bing.com">Bing</a>

<a href="https://github.com" target="_blank">GitHub</a><br> <a href="https://wikipedia.org" target="_blank">Wikipedia</a>

<a href="#bottom">Go to Bottom</a> <!-- lots of content... --> <p id="bottom">You are at the bottom!</p>

<p id="top">You are at the top!</p> <!-- lots of content... --> <a href="#top">Go back to Top</a>


<p id="top"></p> <a href="#bottom">Go to Bottom</a> <!-- content --> <p id="bottom"></p> <a href="#top">Go back to Top</a>

<img src="image1.jpg" title="Sunset View"><br><br> <img src="image2.jpg" title="Mountain Trail"> ... (5 total)

<img src="image.jpg" border="2" width="200" height="200" alt="Bordered Image" >

<a href="https://www.google.com" target="_blank"> <img src="google-logo.png" width="200"> </a>

<a href="myimage.jpg" target="_blank"> <img src="myimage.jpg" width="300"> </a>
