-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (98 loc) · 2.22 KB
/
index.html
File metadata and controls
104 lines (98 loc) · 2.22 KB
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
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Taro Tanaka - Portfolio</title>
<style>
/* Basic styles for layout and look */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
h1 {
margin: 0;
}
nav {
margin-top: 10px;
}
nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
}
section {
max-width: 1000px;
margin: 20px auto;
padding: 0 20px;
}
.project {
background: #fff;
padding: 15px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: #fff;
}
@media(max-width: 600px) {
nav a {
display: block;
margin: 10px 0;
}
}
</style>
</head>
<body>
<header>
<h1>Taro Tanaka</h1>
<p>Web Developer | Designer | Creator</p>
<nav>
<a href="/about.html">About</a>
<a href="/projects">Projects</a>
<a href="/contact">Contact</a>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<p>Hello! I'm Your taro, a passionate developer and designer. I love creating beautiful and functional websites. Here's a little about my background and skills.</p>
</section>
<section id="projects">
<h2>My Projects</h2>
<div class="project">
<h3>Project Title 1</h3>
<p>A brief description of this project. Technologies used: HTML, CSS, JavaScript.</p>
<a href="#">View Project</a>
</div>
<div class="project">
<h3>Project Title 2</h3>
<p>Description of second project. Technologies used: React, Node.js.</p>
<a href="#">View Project</a>
</div>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>Email: your.email@example.com</p>
<p>Follow me on
<a href="#">GitHub</a>,
</p>
</section>
<footer>
<p>© 2021 taro tanaka. All rights reserved.</p>
</footer>
</body>
</html>