π κΈ°ν/μ€νλ₯΄νμ½λ©ν΄λ½_FE
ν¬λͺ λ‘ λ§λ€κΈ°
Dhey
2021. 12. 22. 01:24
λ°μν
κ°μλ₯Ό λ°λΌ μ€μ΅νλ©΄μ λ§λ€μ΄λ³Έ μΉνλ©΄μ΄λ€. μ²μμΌλ‘ μ λλ‘λ HTMLμ λ€λ€λ³΄μλλ° μ±λ³΄λ€ λ μ¦κ°μ μΌλ‘ λ³ννλκ² μ 보μ¬μ λ무 μ¬λ―Έμμλ€.
μμ¦ IVEμ λΉ μ Έμ IVE ν¬λͺ λ‘μ λ§λ€μ΄λ³΄μλ€. μμ§ λ²νΌμ λλ¬ νλ©΄μ΄ λμ΄κ°λ κ²κΉμ§λ μλμ§λ§ 빨리 곡λΆν΄μ νλμ μλ²½ν λλ§μ μΉμ¬μ΄νΈλ₯Ό λ§λ€κ³ μΆλ€.

μ νλ©΄μ μ½λμ΄λ€.
<!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>IVE ν¬λͺ
λ‘</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Noto Serif KR', serif;
}
.mytitle{
height: 300px;
width: 100%;
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://img.wkorea.com/w/2021/12/style_61aad8bbd90fc.jpg");
background-position: center 10%;
background-size: cover;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.mypost {
max-width: 500px;
width: 95%;
margin: 20px auto 0px auto;
box-shadow: 0px 0px 3px 0px black;
padding: 20px;
}
.mypost > button {
margin-top: 10px;
}
.mycards {
max-width: 500px;
width: 95%;
margin: 20px auto 0px auto;
}
.mycards > .card {
margin-top: 10px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="mytitle">
<h1>IVE ν¬λͺ
λ‘</h1>
</div>
<div class="mypost">
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<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>
<button type="button" class="btn btn-dark">μμ λ¨κΈ°κΈ°</button>
</div>
<div class="mycards">
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>μ΄λ² μ¨λ² λ
Έλ λ무 μ’μμ!</p>
<footer class="blockquote-footer">λ€ν</footer>
</blockquote>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>λ€λ€ λ무 μλ»μ!</p>
<footer class="blockquote-footer">DahyeKim</footer>
</blockquote>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>λ§€λ ₯μμ΄μ:)</p>
<footer class="blockquote-footer">λ€ν€</footer>
</blockquote>
</div>
</div>
</div>
</body>
</html>λ°μν