-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (67 loc) · 2.81 KB
/
index.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js" integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.min.js" integrity="sha384-j0CNLUeiqtyaRmlzUHCPZ+Gy5fQu0dQ6eZ/xAww941Ai1SxSY+0EQqNXNE6DZiVc" crossorigin="anonymous"></script>
<title>Ch02-'s Blog</title>
<style>
.container-fluid {
background-color: #2BAE66;
}
.navbar-text {
text-align: center;
text-decoration-color: #FCF6F5
}
.box{
margin-top: 100;
text-align: center;
}
.card{
float: left;
margin-top: 70px;
margin-bottom: 70px;
margin-left: 150px;
margin-right: 150px;
}
</style>
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container-fluid">
<span class="navbar-text">
국민대 행정학과 21학번 조연지
</span>
</div>
</nav>
<div class="box">
<p style="text-align:center" style="margin-top:100px">
<img src="./img/파이리.jpg" width="200px">
</p>
<br> 파이리처럼 열정 넘치는 아기사자 조연지입니다🔥
<p style="padding-left: 100px;
padding-right: 100px;
padding-top: 30px;">
<br> <button type="button" class="btn btn-outline-warning" onclick="location.href='introduce.html'">+ 자세히 알아보기 </button>
</div>
<div class="card" style="width: 18rem;">
<img src="./img/banana.jpg" class="card-img-top" alt="바나나 김치">
<div class="card-body">
<h5 class="card-title">취향 TMI</h5>
<p class="card-text">호? 불호?!</p>
<a onclick="location.href='favor.html'" class="btn btn-primary">알아보러 가기</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="./img/파이리불.gif" class="card-img-top" alt="화염방사">
<div class="card-body">
<h5 class="card-title">취미 TMI</h5>
<p class="card-text">취미생활에 열정활활</p>
<a onclick="location.href='hobby.html'" class="btn btn-primary">알아보러 가기</a>
</div>
</div>
</body>
</html>