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
Binary file added .DS_Store
Binary file not shown.
99 changes: 99 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<!DOCTYPE html>

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.

^_^

<html lang="ko">
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.

안뇽 !!!

<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" />
<title>myProfile</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Gamja+Flower&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm"
crossorigin="anonymous"
/>
</head>

<body>
<div id="main-container">
<header></header>
<main>
<div id="top">JTH WkdWkdman</div>
<div id="container">
<section id="main">
<p>
안녕하세요! <br />저는 정태현입니다&nbsp;<i

Choose a reason for hiding this comment

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

고유진 왔다감!

class="far fa-thumbs-up"
></i
><br /><br />
<i class="fas fa-university"></i>서강대 사학&컴공 20<br />
<i class="far fa-building"></i> 멋쟁이 사자처럼 11기<br />
&nbsp;&nbsp;&nbsp;&nbsp;<span> Back-end</span>
</p>
</section>
<section id="info">
<p>
<br />
<i class="fas fa-birthday-cake"></i>&nbsp; 97.04.13 <br /><i
class="fas fa-envelope"
></i
>&nbsp;nex_david@naver.com<br />
<i class="fab fa-github"></i>
<a href="https://github.com/nexdavid2020" target="_blank"
>&nbsp;nexdavid2020</a
>
<br />
<i class="fab fa-instagram"></i>
<a href="" target="_blank">nexdavid_</a><br />
Beakjoon:&nbsp;&nbsp; 199haram <br />
</p>
</section>
<section id="photo">
<img class="myphoto" src="./images/my_img.jpeg" />
</section>
<section id="movie">
<div class="movie_sub"></div>
<br /><br />
<p>[인생영화]<br />Harry Potter</p>
</section>
<section id="mbti">
<div class="mbti_sub"></div>
<br /><br />
<p>
[MBTI]<br />
ENTJ<br />
대담한 통솔자
</p>
</section>
<section id="food">
<p>
[좋아하는 음식]<br />초밥<br />
고기<br />새우<br />돼지갈비
</p>
</section>
</div>
<aside>
<div id="team">
<p>
디버깅 3조에는 entj가 세명이다<br />건화는 소주가 아닌 맥주파이다.
<br />선명이는 메탈리카, 뮤즈 등 락광팬이다
</p>
</div>
<div id="hi">
<span>멋사 서강대 잘부탁해요 ~ :)</span>
</div>
</aside>
</main>
<footer>
Copyright © 2023 서강대학교 멋쟁이사자처럼 정태현.All rigth Reserved
<br />🦁🦁🦁<br />
</footer>
</div>
</body>
</html>

Choose a reason for hiding this comment

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

호야!

205 changes: 205 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
* {
box-sizing: border-box;
margin: 0;
}

body {
background-color: #f8f8f8;
}

header {
height: 40px;
background-color: #333;
}

main {
height: 600px;
width: 750px;
margin: 0 auto;
background-color: ghostwhite;
}

footer {
height: 200px;
width: 750px;
background-color: greenyellow;
margin: 0 auto;
border-radius: 10px;
}

#top {
height: 35px;
background-color: rgb(141, 215, 244);
border-radius: 0 0 10px 10px;
margin: 0px 0px 25px 0px;
color: white;
font-size: 18px;
text-align: center;
line-height: 35px;
}

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

aside {
height: 110px;
background-color: ghostwhite;
margin-bottom: 60px;
margin: 0 15px 60px 15px;
display: flex;
justify-content: space-between;
}

section {
width: 30%;
height: 45%;
background-color: white;
border-radius: 7px;
font-family: "Gamja Flower", cursive;
font-size: 22px;
color: goldenrod;
padding: 5px;
}

#team {
width: 470px;
height: 100%;
background-color: #31999c;
color: white;
border-radius: 5px;
font-family: "Gamja Flower", cursive;
font-size: 22px;
color: springgreen;
padding: 5px;
}

#hi {
width: 230px;
height: 100%;
background-color: pink;
color: black;
border-radius: 5px;

font-family: "Gamja Flower", cursive;
font-size: 22px;
color: purple;
padding: 5px;
text-align: center;
}

img.myphoto {
width: 100%;
height: 100%;
border-radius: 7px;
}

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

#movie {
padding: 30px;
background-image: url("./images/harryPotter.png");
background-size: cover;
position: relative;
height: 45%;
width: 30%;
text-align: center;
z-index: 1;
}

.movie_sub {
top: 0;
left: 0;

position: absolute;
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
}

#mbti {
/* padding: 30px; */
background-image: url("./images/entj.png");
background-size: cover;
/* 부모를 realtive로 하고 */
position: relative;
color: tomato;
height: 45%;
width: 30%;
text-align: center;
}

.mbti_sub {
/* 자식을 absolute로 하고 */
top: 0;
left: 0;
/*
width: 100%;
height: 100%;
background-color: rgba(101, 97, 97, 0.4);
text-align: center;
color: orange; */
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
border-radius: 5px;
position: absolute;
}

#team p {
text-align: center;
}
#hi span {
text-align: center;
}

#food {
padding: 30px;
}

footer {
height: 200px;
background-color: white;
text-align: center;
color: rgb(170, 170, 170);
padding: 50px;
}

#main:hover {
transform: scale(1.4);
transition: all 0.2s linear;
}

#info:hover {
transform: scale(1.4);
transition: all 0.2s linear;
}

#photo:hover {
transform: scale(1.4);
transition: all 0.2s linear;
}

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

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

#food:hover {
transform: scale(1.4);
transition: all 0.2s linear;
}