-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Tattoo Portfolio</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f4f4f4; | ||
} | ||
header { | ||
background-color: #333; | ||
color: #fff; | ||
padding: 10px 0; | ||
text-align: center; | ||
} | ||
nav { | ||
display: flex; | ||
justify-content: center; | ||
background-color: #444; | ||
} | ||
nav a { | ||
color: #fff; | ||
padding: 14px 20px; | ||
text-decoration: none; | ||
text-align: center; | ||
} | ||
nav a:hover { | ||
background-color: #555; | ||
} | ||
.container { | ||
padding: 20px; | ||
} | ||
.gallery img { | ||
width: 100%; | ||
height: auto; | ||
} | ||
.gallery { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); | ||
gap: 10px; | ||
} | ||
footer { | ||
background-color: #333; | ||
color: #fff; | ||
text-align: center; | ||
padding: 10px 0; | ||
position: fixed; | ||
bottom: 0; | ||
width: 100%; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Tattoo Portfolio</h1> | ||
</header> | ||
<nav> | ||
<a href="#home">Home</a> | ||
<a href="#about">About</a> | ||
<a href="#gallery">Gallery</a> | ||
<a href="#contact">Contact</a> | ||
</nav> | ||
<div class="container" id="home"> | ||
<h2>Welcome to My Tattoo Portfolio</h2> | ||
<p>Explore my collection of tattoos and learn more about my work.</p> | ||
</div> | ||
<div class="container" id="about"> | ||
<h2>About Me</h2> | ||
<p>I am a professional tattoo artist with over 10 years of experience. My passion is creating unique and meaningful designs for my clients.</p> | ||
</div> | ||
<div class="container gallery" id="gallery"> | ||
<h2>Gallery</h2> | ||
<img src="tattoo1.jpg" alt="Tattoo 1"> | ||
<img src="tattoo2.jpg" alt="Tattoo 2"> | ||
<img src="tattoo3.jpg" alt="Tattoo 3"> | ||
<img src="tattoo4.jpg" alt="Tattoo 4"> | ||
<img src="tattoo5.jpg" alt="Tattoo 5"> | ||
<img src="tattoo6.jpg" alt="Tattoo 6"> | ||
</div> | ||
<div class="container" id="contact"> | ||
<h2>Contact</h2> | ||
<p>If you have any questions or would like to book an appointment, please reach out to me.</p> | ||
<form> | ||
<label for="name">Name:</label><br> | ||
<input type="text" id="name" name="name"><br> | ||
<label for="email">Email:</label><br> | ||
<input type="email" id="email" name="email"><br> | ||
<label for="message">Message:</label><br> | ||
<textarea id="message" name="message" rows="4" cols="50"></textarea><br> | ||
<input type="submit" value="Submit"> | ||
</form> | ||
</div> | ||
<footer> | ||
<p>© 2024 Tattoo Portfolio. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> |