스파르타코딩개발일지
첫 개발일지.
KeomBi
2022. 8. 11. 21:53
기존에 자바수업들으면서 아는내용이였지만 한번더 복습한다는 마인드로 수강신청을하게되었다.
맨처음 에는 무슨말인지도 모르는채로 따라갔지만 이번 두번째에는 아는내용을 또 듣다보니 더 쉽게 이해할수있었고
강사님이 필요한 핵심내용을만 알려주셔서 더욱이 쉽게 알수있었다.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<title>스파르타코딩클럽 | 부트스트랩 연습하기</title>
<link href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Gowun Dodum', sans-serif;
}
</style>
<style>
.mytitle {
background-color: green;
width: 100%;
height:250px;
background-position: center 30%;
background-size: cover;
color: white;
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("https://file.mk.co.kr/meet/neds/2022/03/image_readtop_2022_261141_16479320604983094.jpg");
display: flex;
flex-direction: column;
justify-content:center;
align-items: center;
}
.mytitle > button {
width: 200px;
height: 50px;
background-color: transparent;
border-radius: 50px;
margin-top: 20px;
}
.mypost{
max-width: ;
width: 500px;
margin: 20px auto 0px auto;
box-shadow: 0px 0px 3px 0px gray;
padding: 20px;
}
.mybtn{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.mybtn > button{
margin-right: 350px;
}
.form-control1{
margin-top: 10px;
}
.form-control{
margin-top: 30px;
}
.card{
width: 100%;
max-width: 500px;
margin: auto;
}
.card >
</style>
</head>
<body>
<div class="mytitle">
<h1 >레드벨벳 팬 방명록</h1>
</div>
<div class="mypost">
<div class="form-floating mb-3">
<input type="email" class="form-control1" id="floatingInput">
<label for="floatingInput">닉네임</label>
</div>
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea2" style="height: 100px"></textarea>
<label for="floatingTextarea2">내용</label>
</div>
<div class="mybtn">
<button type="button" class="btn btn-dark">등록하기</button>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>AAA</p>
<footer class="blockquote-footer">AAA <cite title="Source Title"></cite></footer>
</blockquote>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>BBB</p>
<footer class="blockquote-footer">BBB<cite title="Source Title"></cite></footer>
</blockquote>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>CCC</p>
<footer class="blockquote-footer">CCC<cite title="Source Title"></cite></footer>
</blockquote>
</div>
</div>
</body>
</html>