-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
79 lines (79 loc) · 2.25 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>projects</title>
<link rel="icon" type="image/png" href="imgs/favicon.png" />
<script
src="http://kit.fontawesome.com/6478f529f2.js"
crossorigin="anonymouse"
></script>
<link rel="stylesheet" href="./project-style.css" />
</head>
<body>
<header>
<a href="./project.html" class="logo">PROJECT</a>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="./index.html">About</a></li>
<li><a href="./project.html">Project</a></li>
</ul>
</nav>
<div class="link">
<ul>
<li>
<button class="link__icon">
<a href="https://github.com/yoosaemsol" target="_blank"
><i class="fab fa-github-square"></i
></a>
</button>
</li>
<li>
<button class="link__icon">
<a href="https://velog.io/@saemsol" target="_blank"
><i class="fab fa-bootstrap"></i
></a>
</button>
</li>
</ul>
</div>
</header>
<section class="porjects">
<div class="project">
<a
class="youtube-clone"
target="_blank"
href="https://yoosaemsol.github.io/youtube-clone/"
></a>
<span>1. youtube-clone | HTML & CSS</span>
</div>
<div class="project">
<a
class="todolist"
target="_blank"
href="https://yoosaemsol.github.io/to-do-list/"
></a>
<span>2. to-do list | HTML & CSS & JavaScript</span>
</div>
<div class="project">
<a
target="_blank"
href="https://yoosaemsol.github.io/squarespace-clone/"
class="squarespace"
></a>
<span>3. clone-coding | HTML & CSS & JavaScript</span>
</div>
<div class="project">
<a target="_blank" href="#">coming up!</a>
</div>
<div class="project">
<a target="_blank" href="#">coming up!</a>
</div>
<div class="project">
<a target="_blank" href="#">coming up!</a>
</div>
</section>
</body>
</html>