-
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
1 parent
0947f88
commit f835919
Showing
5 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,115 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Meow Awesome Portfolio Site 🚀</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<!-- Header and Navigation --> | ||
<header> | ||
<h1>CodeSpace Cat's Portfolio 🎨</h1> | ||
<nav> | ||
<ul> | ||
|
||
<li> | ||
<a href="#Me" >About Me 😀</a> | ||
</li> | ||
<li> | ||
<a href="#Skills" >Skills 😎</a> | ||
</li> | ||
<li> | ||
<a href="#P" >Portfolio 🤗</a> | ||
</li> | ||
<li> | ||
<a href="#C" >Contacts 🤳</a> | ||
</li> | ||
|
||
</ul> | ||
<!-- Navigation Menu --> | ||
</nav> | ||
</header> | ||
|
||
<!-- About Me Section --> | ||
<section id="Me"> | ||
<h2>About Me 👋</h2> | ||
<img src="C:\Users\Software.Engineer19\Downloads\cat-codespace.png" alt="codespace cat"/> | ||
<p> | ||
Hello! I'm <b>CodeSpace Cat.</b>I'm purr-ssionate about web development and design.<br/> | ||
I've been pawing at the web industry for just one catnap(that's less than a day in human terms),<br/> | ||
and I adore crafting pawsitively intuitive,whisker-twitching,and fur-tastic web experiences.Whoa that's a lot of puns. | ||
</p> | ||
</section> | ||
|
||
<!-- Skills Section --> | ||
<section id="Skills"> | ||
<h2>My Skills 😤</h2> | ||
<ul> | ||
<li><b>Web Development 🧠</b></li> | ||
<li><b>UI/UX Design 🦾</b></li> | ||
<li><b>Backend Development 🦿</b></li> | ||
<li><b>Database Management 🛠</b></li> | ||
<li><b>SEO Optimization 🛠</b></li> | ||
<li><b>Lying in the sun 🗿</b></li> | ||
</ul> | ||
</section> | ||
|
||
<!-- Portfolio Section --> | ||
<section id="P"> | ||
<h2>Catfolio 🤓</h2> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>Project Name</th> | ||
<th>Date</th> | ||
<th>Description</th> | ||
<th>Thumbnail</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Purrfect Landing Page </td> | ||
<td>January 2024 </td> | ||
<td> A delightful landing page for luxury cat condo.</td> | ||
<td> <img src="1.png" alt="cat1" /></td> | ||
</tr> | ||
<tr> | ||
<td>Kityy Commerce </td> | ||
<td>February 2024</td> | ||
<td>An online store selling the fanciest catnip toys.</td> | ||
<td> <img src="2.png" alt="cat2" /></td> | ||
</tr> | ||
<tr> | ||
<td>CatChat Social</td> | ||
<td>June 2024</td> | ||
<td>Asocial media site for cats to meow and hiss!</td> | ||
<td><img src="3.png" alt="cat3" /></td> | ||
</tbody> | ||
</table> | ||
</section> | ||
|
||
<!-- Contact Section --> | ||
<section id="C"> | ||
<h2>Contact Me</h2> | ||
<form> | ||
<label for="Name">NAME:</label> | ||
<input type="text" name="Name" /> | ||
<label for="Name2">EMAIL:</label> | ||
<input type="email" name="Name2" /> | ||
<label for="Name3">MESSAGE:</label> | ||
<textarea name="message"></textarea> | ||
<input type="submit"/> | ||
</form> | ||
|
||
</section> | ||
|
||
<!-- Footer --> | ||
<footer> | ||
©<b> 2024 CodeSpace Cat.All rights reserved.</b> | ||
</footer> | ||
|
||
</body> | ||
</html> |