Skip to content
Permalink
1e0d3fb33a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit 1e0d3fb Sep 25, 2024 History
1 contributor

Users who have contributed to this file

72 lines (64 sloc) 2.34 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Warren Chov - Home</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Sidebar -->
<div class="sidebar">
<h2>Warren Chov</h2>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!-- Main Content -->
<div class="content">
<!-- About Section -->
<div id="home" class="section-content">
<h1>About Warren</h1>
<p>
Warren Chov is a student at the University of Connecticut pursuing a
degree in Web / Interactive Media Design. With strengths in graphic design,
vector graphics, and web design, Warren finds passion in creating visually
compelling websites.
</p>
</div>
<!-- Projects Section -->
<div id="projects" class="section-content">
<h1>Projects</h1>
<!-- 3x2 Grid of Image Boxes -->
<div class="project-grid">
<div class="project-box">
<img src="image1.jpg" alt="Senior Project">
</div>
<div class="project-box">
<img src="image2.jpg" alt="Key Vector">
</div>
<div class="project-box">
<img src="image3.jpg" alt="CSS Snap Scroll">
</div>
<div class="project-box">
<img src="image4.jpg" alt="Hello World Animation">
</div>
<div class="project-box">
<img src="image5.jpg" alt="Explorative Narrative">
</div>
<div class="project-box">
<img src="image6.jpg" alt="Placeholder?">
</div>
</div>
</div>
<!-- Contact Section -->
<div id="contact" class="section-content">
<h1>Contact</h1>
<p><strong>Email:</strong> warrenchov@gmail.com</p>
</div>
</div>
</body>
</html>