-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.01 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 2.01 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
<!DOCTYPE html>
<html lang=ko>
<head>
<meta charset="utf-8">
<title>
클론코딩 프로젝트
</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<h1>
클론코딩 of shinahyo
</h1>
</header>
<hr>
<main>
<nav class="par">
<!--목록을 center정렬하려면, ul, ol의 가로 크기 지정해주고, margin값을 활용해야 한다.-->
<ol>
<li><a href="1inout.html">in&out</a> /
<span class="code">html,css</span> /
<span class=infor>꿈꾸는 집의 인테리어,익스테리어 예시 이미지</span><br>
(참고: <a href="https://opentutorials.org/course/2473/13712" target="_blank">생활코딩 mansory 레이아웃</a>)
</li>
<hr>
<li><a href="2clogle.html">clogle</a> /
<span class="code">html,css</span> /
<span class="infor">구글 main페이지 클론</span><br>
(참고: <a href="https://youtu.be/_YrXKxY8PTY" target="_blank">조코딩 구글클론</a>),<u>footer는 독학</u>
</li>
<hr>
</ol>
</nav>
</main>
<!--footer는 body 안에 들어간다-->
<footer>
<div class="foot">
<input type="button" id="night_day" value="night"onclick="
const target = document.querySelector('body');
if(this.value === 'night'){
target.style.backgroundColor = 'black';
target.style.color = 'white';
this.value = 'day';
} else {
target.style.backgroundColor = 'white';
target.style.color = 'black';
this.value = 'night';
}
">
ㅣshinahyoㅣ<a href="https://github.com/ShinAhYoung21" target="_blank">github main</a>ㅣ<a href="https://archive-shin.tistory.com/" target="_blank">tech blog</a>
ㅣ<a href="https://shinahyoung21.github.io/gain_proj/">project-archive</a>
</div>
</footer>
</body>
</html>