Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 팀스파르타
- 패스트캠퍼스
- kpt회고
- 파이썬문법
- 9to9
- 장고
- 파이썬
- 코딩
- 준태튜터님
- 웹만들기
- 리콰이어먼츠 설정
- 카카오톡클론
- ai웹개발
- 스파르타코딩
- 웹개발종합반
- 유화제작
- 전작가
- KPT
- 스파코
- 장고기초지식
- 내일배움캠프
- 개인과제
- django
- Python
- 왕초보코딩
- 당우
- 스파르타코딩클럽
- 당우의모험
- 패스트캠퍼스온라인
- 벌꺼야
Archives
- Today
- Total
당우 일기장
html / css 를 이용한 카카오톡 클론코딩 본문
카카오톡 프로필 클론코딩을 해보자
<!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">
<head>
<title>카카오톡 클론</title>
</head>
<style>
.container {
width: 400px;
height: 800px;
border: 1px solid lightgray;
margin: 50px auto;
position: relative;
}
.pink-box{
height: 500px;
background-color: pink;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 50px;
}
.line {
margin-bottom: 10px;
color: white;
}
.white-box {
height: 260px;
align-items: center;
display: flex;
flex-direction: column;
justify-content: space-around;
padding: 15px;
}
.profile_message {
text-align: center;
color: white;
}
.image {
width: 300px;
display: flex;
justify-content: space-around;
align-items: center;
font-size: 10pt;
top: -100px;
}
.icon {
width: 40px;
height: 40px;
}
.chat-icon {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.profile-icon {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.story-icon {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.photo1 {
width: 100px;
height: 100px;
margin: auto;
top: 450px;
object-fit: cover;
border-radius: 50%;
position: absolute;
background: url("../static/dongwoo.png");
background-position: center;
background-size: cover;
}
.name
{
top: 10px;
}
</style>
<body>
<div class="container">
<div class="pink-box">
<div class="line">____________________</div>
<div class="profile_message">
코린이 응애 울어
</div>
</div>
<div class="white-box">
<div class="photo1">
</div>
<h3 class="name">김동우</h3>
<div class="image">
<div class="chat-icon">
<img class="icon" src="../static/a.png" alt="chat"/>
<h4>나와의 채팅</h4>
</div>
<div class="profile-icon">
<img class="icon" src="../static/c.png" alt="profile"/>
<h4>프로필 관리</h4>
</div>
<div class="story-icon">
<img class="icon" src="../static/b.png" alt="story"/>
<h4>카카오 스토리</h4>
</div>
</div>
</div>
</div>
</body>
</html>
아이콘 사진
깃 주소
'내일배움캠프' 카테고리의 다른 글
스파르타코딩클럽/장고넷플릭스코딩클론/honflix/kpt /회고록 (0) | 2022.02.09 |
---|---|
스파르타 s.a (0) | 2022.01.27 |
클래스 연습문제 (0) | 2021.12.23 |
2. 개인과제 ) 파이썬 베스킨라빈스31 게임 만들기 (ai) (0) | 2021.12.21 |
2.개인과제 )파이썬 베스킨라빈스31 게임 만들기 (0) | 2021.12.21 |