Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# 11th_HTML-CSS
4월 5일 세션에 대한 미니 프로젝트 과제를 제출하는 레포입니다.

4월 5일 세션에 한 미니 프로젝트를 4월 12일에 업로드했다.
(졸려워...)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

나도ㅠㅠ

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

피곤해ㅜㅜ

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

시험 두개 본다니 부러워..

99 changes: 99 additions & 0 deletions home.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<!DOCTYPE html>
<html lang="ko">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>

<body>
<div id="main-container">
<header></header>
<main>
<div id="top">My Profile</div>
<div id="container">
<section>
<p>
[내 프로필]<br>
이름 : 김유이<br>
포지션 : 백엔드<br>
학과 : 국어국문학과<br>
생년월일 : 2000.02.06
</p>
</section>
<section id="mbti">
<div class="bg"></div>
<p>
[MBTI]<br>
INFJ<br>
선의의 옹호자<br>
다른 사람에게 의욕을 불어넣는 이상주의<br>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

시험기간인데 의욕 좀 불어넣어 주세요....ㅠㅠ

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저두요 ㅠㅠ

</p>
</section>
<section>
<p>
[좋아하는 음식]<br>
곱창<br>
국수<br>
육회<br>
</p>
</section>
<section id="movie">
<div class="bg">

</div>
<p>
[인생영화🎬]<br>
비긴 어게인<br>
(5번 봤다)<br>
</p>
</section>
<section>
<p>
[요즘 자주 듣는 노래]<br>
백예린-square🎼<br>
</p>
</section>
<section id="cat">
<div class="bg"></div>
<p>
[반려동물]<br>
없지만 고양이 좋아합니다<br>
고양이 키우고 싶다<br>
</p>
</section>
</div>
<aside>
<div id="team">
<p>
[디버깅조]<br>
<div class="debug">
<p>
1. 최승호의 최애곡은 히사이시조의 merry go round인데 한우석은 그것을 피아노로 칠 수 있다.<br>
2. 이상연은 오늘 1교시를 지각했다.<br>
3. 오은택의 어금니가 깨진 걸 알고 치과 예약을 했다.<br>
</p>
</div>
</p>
</div>
<div id="hi">
<p>
서강 멋사 11기 아기사자<br>
🦁🦁🦁
</p>
</div>
</aside>
</main>
<footer>
Copyright © 2023 서강대학교 멋쟁이사자처럼 김유이. All right Reserved.
</footer>
</div>
<div id="alert">
PC화면에서 접속해주세요!
</div>
</body>

</html>
168 changes: 168 additions & 0 deletions styel.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
@font-face {
font-family: 'KCC-Ganpan';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/KCC-Ganpan.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}

* {
box-sizing: border-box;
margin: 0;
font-family: 'KCC-Ganpan';
}

body {
background-color: rgb(189, 188, 188);

}

header {
height: 40px;
background-color: grey;
}

main {
height: 640px;
width: 750px;
margin: 0 auto;
background-color: pink
}

footer {
height: 200px;
background-color: #F69F8B;
text-align: center;
padding: 25px;
color: grey;
}

#top {
height: 35px;
background-color: gainsboro;
margin-bottom: 25px;
;
text-align: center;
line-height: 35px;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
}

#container {
height: 410px;
padding: 10px;
background-color: darksalmon;
display: flex;
align-content: space-around;
flex-wrap: wrap;
justify-content: space-around;
}

aside {
height: 110px;
background-color: beige;
margin: 30px 20px 30px 20px;

display: flex;
justify-content: space-between;
border-radius: 5px;
/* margin: 0 15 60 15; */
}

section {
height: 45%;
width: 30%;
background-color: white;
border-radius: 7px;
}

section p {
padding: 27px;
text-align: center;
position: relative;
}

#team {
width: 470px;
height: 100%;
background-color: gainsboro;
/* float:left; */
border-radius: 5px;
padding: 10px;
text-align: center;
}

#team p {
font-size: small;
}

.debug {
text-align: left;
}

#hi {
width: 230px;
height: 100%;
background-color: bisque;
/* float: right; */
border-radius: 5px;
padding: 30px;
text-align: center;
}

#mbti {
background-image: url("./images/infj.png");
background-size: cover;
position: relative;
color: white;
}

#mbti:hover {
transform: scale(1.2);
transition: all 0.2s linear;
}

#cat {
background-image: url("./images/cat.jpg");
background-size: cover;
color: white;
position: relative;
}

#cat:hover {
transform: scale(1.2);
transition: all 0.2s linear;
}

#movie {
background-image: url("./images/movie.jpeg");
background-size: cover;
position: relative;
color: white;
}

#movie:hover {
transform: scale(1.2);
transition: all 0.2s linear;
}

.bg {
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
border-radius: 5px;
position: absolute;
}

@media(max-width: 800px) {
#main-container {
display: none;
}

#alert {
text-align: center;
margin-top: 30px;
font-size: large;
color: red;
display: block;
}
}