-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (90 loc) · 3.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!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>
<!-- Navigation Menu -->
<ul>
<li>
<a href="https://Meowawesomeportfoliosite.com"> About Me</a>
</li>
<li>
<a href="https://Meowawesomeportfoliosite.com">Skills</a>
</li>
<li>
<a href="https://Meowawesomeportfoliosite.com">Portfolio</a>
</li>
<li>
<a href="https://Meowawesomeportfoliosite.com">Contact</a>
</li>
</ul>
</nav>
</header>
<!-- About Me Section -->
<section id="">
<h2>About Me</h2>
<img src="cat-codespace.png">
<p>Hello! I'm <b>Codespace Cat</b>I'm purr-ssionate about web development and design. I've been pawing at the
web industry for just one catnap (That's less than a day in human terms), 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="">
<h2>My Skills</h2>
<ul>
<li>Web Development</li>
<li>UI/UX Design</li>
<li>Backend Development</li>
<li>Database Management</li>
<li>SEO Optimization</li>
<li>Lying in the Sun</li>
</ul>
</section>
<!-- Portfolio Section -->
<section id="">
<h2>Catfolio</h2>
<table>
<tr>
<th><b>Project Name</b></th>
<th><b>Date</b></th>
<th><b>Description</b></th>
<th><b>Thumbnail</b></th>
</tr>
<tr>
<td>Perfect Landing Page</td>
<td>January 2024</td>
<td>A delightful landing page for a luxury cat condo</td>
<td><img src="1.png"></td>
</tr>
<tr>
<td>Kitty Commerce</td>
<td>February 2024</td>
<td>An online store selling the fanciest catnip toys</td>
<td><img src="2.png"></td>
</tr>
<tr>
<td>CatChat Social</td>
<td>June 2024</td>
<td>A social media site to meow and hiss!</td>
<td><img src="3.png"></td>
</tr>
</table>
</section>
<!-- Contact Section -->
<section id="">
<h2>Contact Me</h2>
<p<Name: <input type="text"> Email: <input type="text"> Message <input type="text"><button>Submit</button></p>
</section>
<!-- Footer -->
<footer>
<p>©2024 Codespace Cat. All Rights Reserved.</p>
</footer>
</body>
</html>