-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (58 loc) · 1.94 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
<html>
<head>
<meta charset="utf-8">
<title>Personal Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<section>
<nav>
<a href="#" class="logo">TAKASE PORTFOLIO</a>
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact me</a></li>
<li><a href="#">Team</a></li>
</ul>
</nav>
<div class="text-container">
<p>This is my portfolio website,
feel free to contact me regarding software topics!</p>
<p>I'm Takase</p>
<p>I'm software engineering student</p>
<button class="hire-btn">Hire me</button>
<button class="down-cv">Download CV</button>
</div>
</section>
<div class="about-container">
<img src="../taka_portfolio/imgges/IMG_1993.png">
<div class="about-text">
<p>About me</p>
<p>Develper</p>
<p>Hello, I'm Takase</p>
<button>Hire Me</button>
<button>Download CV</button>
</div>
</div>
<div class="projects">
<div class="projects-text">
<p>Projects</p>
<p>this is my project such as Instagram clone. thoes are including the group work too.</p>
</div>
<div class="box-container">
<div class="box-1">
<span>1</span>
<p class="heading">Instagram Clone</p>
<p>This is instagram clone, this is including sotries, header. etc..</p>
<button>Read More</button>
</div>
<div class="box-2">
<span>2</span>
<p class="heading">Asteroids game</p>
<p>This is Asteroids game project</p>
<button>Read More</button>
</div>
</div>
</div>
</body>
</html>