Untitled
unknown
plain_text
9 months ago
2.8 kB
6
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Graphic Designer Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Jane Doe</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#about">About Me</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<h1>Welcome to My Portfolio</h1>
<p>Discover my work and projects in graphic design.</p>
</section>
<section id="portfolio">
<h2>My Work</h2>
<div class="projects">
<div class="project">
<img src="project1.jpg" alt="Project 1">
<p>Brand Identity Design for XYZ Company</p>
</div>
<div class="project">
<img src="project2.jpg" alt="Project 2">
<p>Website Redesign for ABC Corp</p>
</div>
<div class="project">
<img src="project3.jpg" alt="Project 3">
<p>Marketing Materials for DEF Inc.</p>
</div>
<div class="project">
<img src="project4.jpg" alt="Project 4">
<p>Logo Design for GHI Startup</p>
</div>
<div class="project">
<img src="project5.jpg" alt="Project 5">
<p>Social Media Graphics for JKL Brand</p>
</div>
<div class="project">
<img src="project6.jpg" alt="Project 6">
<p>Packaging Design for MNO Products</p>
</div>
</div>
</section>
<section id="about">
<h2>About Me</h2>
<img src="designer.jpg" alt="Designer Photo">
<p>Hello! I'm Jane Doe, a passionate graphic designer with over 10 years of experience in creating visually appealing designs. I specialize in brand identity, web design, and marketing materials. My goal is to help businesses communicate their message effectively through creative design solutions.</p>
</section>
<footer id="contact">
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</footer>
</body>
</html>
Editor is loading...
Leave a Comment