-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (75 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h1>About Me</h1>
<p>Hi, my name is takema and I'm a enginner.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>python</li>
<li>Studying: Google Cloud</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li>
<a href="#">
<img src="https://via.placeholder.com/300x200.png?text=Project+1" alt="Project 1">
<h3>Project 1</h3>
<p>A beautiful and responsive website for a local business.</p>
</a>
</li>
<li>
<a href="#">
<img src="https://via.placeholder.com/300x200.png?text=Project+2" alt="Project 2">
<h3>Project 2</h3>
<p>A fully functional e-commerce website with shopping cart and checkout.</p>
</a>
</li>
<li>
<a href="#">
<img src="https://via.placeholder.com/300x200.png?text=Project+3" alt="Project 3">
<h3>Project 3</h3>
<p>A mobile app that helps users stay on track with their daily tasks.</p>
</a>
</li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea>
<input type="submit" value="Send">
</form>
</section>
</main>
<footer>
<p>© 2023 takema. All rights reserved.</p>
</footer>
</body>
</html>