๋ฐ์ํ
์กฐ๊ฑด)
ํผ์ผ๋ก ์ ์ํ ๊ฒ!
๋ค์ด๊ฐ ๋ด์ฉโผ
๊ณ ์์ด ์ด๋ฆ,
์ฃผ์์ ํ(์์ธ, ๋ถ์ฐ, ๋๊ตฌ, ๊ด์ฃผ, ์ธ์ฒ),
์ฑ๋ณ,
์ข์ํ๋ ๊ฒ(์์ , ๊ณ ๊ธฐ, ์ฐ์ , ํต์กฐ๋ฆผ),
์ฌ์ง ์ฒจ๋ถ,
์ฃผ์ธ ์ด๋ฆ,
๋ฉ์ผ,
์์ธ ์ค๋ช
โ
<์์ค>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>๊ณ ์์ด ์๋</title>
<style>
* {
margin: 0; /* ์ธ๋ถ ์ฌ๋ฐฑ */
padding: 0; /* ํ
๋๋ฆฌ์ ๋ด์ฉ ์ฌ์ด์ ์ฌ๋ฐฑ */
box-sizing: border-box;
}
โ
#container {
width: 100%; /* ๋๋น */
}
โ
header {
width: 100%; /* ๋๋น */
height: 80px; /* ๋์ด */
margin: 0; /* ์ธ๋ถ ์ฌ๋ฐฑ */
}
โ
a {
text-decoration: none;
}
โ
nav {
height: 50px; /* ๋์ด */
background:skyblue; /* ๋ฐฐ๊ฒฝ ์ */
}
โ
#main-nav {
list-style: none;
margin-bottom: 10px; /* ์์ ์ฃผ๋ณ ์ฌ๋ฐฑ */
padding: 10px; /* ํ
๋๋ฆฌ์ ๋ด์ฉ ์ฌ์ด์ ์ฌ๋ฐฑ */
text-align: center; /* ๊ฐ์ด๋ฐ ์ ๋ ฌ */
}
โ
#main-nav li {
display: inline-block;
color: #fff;
font-family: "๋ง์ ๊ณ ๋", ๋์;
font-size: 0.9em;
margin: 5px 15px; /* ์ธ๋ถ ์ฌ๋ฐฑ */
}
โ
nav a:link, a:visited {
color: #fff;
}
โ
nav a:active {
color:skyblue;
}
โ
nav > ul > li {
width: 15%; /* ๋๋น */
height: 40px; /* ๋์ด */
margin-top: 30px; /* ์์ ์ฃผ๋ณ ์ฌ๋ฐฑ */
position:relative; /* ์๋ ์์ ์ด ์์ด์ผ๋ ์์น๋ฅผ ๊ธฐ์ค์ผ๋ก ๋ฐฐ์น */
float:center; /* ์ ๋ ฌ */
}
โ
nav > ul > li > a {
display: block; /* ํํ */
width: 25%px; /* ๋๋น */
height: 40px; /* ๋์ด */
text-align: center; /* ๊ฐ์ด๋ฐ ์ ๋ ฌ */
line-height: 40px; /* ์ค ๊ฐ๊ฒฉ */
font-size: 18px; /* ๊ธ์ ํฌ๊ธฐ */
color:black /* ๊ธ์ ์ */
}
โ
nav > ul > li > a:hover {
background-color: gray; /* ๋ฐฐ๊ฒฝ ์ */
color: floralwhite;
}
โ
body {
margin: 0; /* ์ธ๋ถ ์ฌ๋ฐฑ */
height: 100%; /* ๋์ด */
background: whitesmoke; /* ๋ฐฐ๊ฒฝ ์ */
}
โ
#wrapper {
position: relative; /* ์๋ ์์ ์ด ์์ด์ผ๋ ์์น๋ฅผ ๊ธฐ์ค์ผ๋ก ๋ฐฐ์น */
height: 100%; /* ๋์ด */
}
โ
#content {
position: absolute;
left: 50%;
transform: translate(-50%);
width: 460px; /* ๋๋น */
}
โ
h3 {
margin: 19px 0 8px; /* ์ธ๋ถ ์ฌ๋ฐฑ */
font-size: 14px; /* ๊ธ์ ํฌ๊ธฐ */
font-weight: 700;
}
โ
.box {
display: block; /* ํํ */
width: 100%; /* ๋๋น */
height: 51px; /* ๋์ด */
border: solid 1px dimgray;
padding: 10px 14px 10px 14px; /* ํ
๋๋ฆฌ์ ๋ด์ฉ ์ฌ์ด์ ์ฌ๋ฐฑ */
box-sizing: border-box;
background: #fff; /* ๋ฐฐ๊ฒฝ ์ */
position: relative; /* ์๋ ์์ ์ด ์์ด์ผ๋ ์์น๋ฅผ ๊ธฐ์ค์ผ๋ก ๋ฐฐ์น */
}
โ
.int {
display: block; /* ํํ */
position: relative;
width: 100%; /* ๋๋น */
height: 29px; /* ๋์ด */
border: none;
background: #fff; /* ๋ฐฐ๊ฒฝ ์ */
font-size: 15px; /* ๊ธ์ ํฌ๊ธฐ */
}
โ
input {
font-family: '๋์';
}
โ
.box.int_id {
padding-right: 110px; /* ํ
๋๋ฆฌ์ ๋ด์ฉ ์ฌ์ด์ ์ฌ๋ฐฑ */
}
โ
select {
width: 100%; /* ๋๋น */
height: 29px; /* ๋์ด */
font-size: 15px; /* ๊ธ์ ํฌ๊ธฐ */
background: #fff 100% 50% no-repeat;
background-size: 20px 8px;
-webkit-appearance: none;
display: inline-block; /* ํํ */
text-align: start;
border: none;
cursor: default;
font-family: '๋์';
}
โ
.button_area {
margin: 30px 0 91px; /* ์ธ๋ถ ์ฌ๋ฐฑ */
}
โ
#button {
width: 100%; /* ๋๋น */
padding: 21px 0 17px; /* ํ
๋๋ฆฌ์ ๋ด์ฉ ์ฌ์ด์ ์ฌ๋ฐฑ */
border: 0;
cursor: pointer;
color: #fff;
background-color: cornflowerblue;
font-weight: 400;
font-family: '๋์';
}
โ
.button {
cursor: pointer;
background:gray; /* ๋ฐฐ๊ฒฝ ์ */
text-decoration: none; /* ๊ธ์ ๊พธ๋ฐ */
color: #666; /* ์๊น */
}
โ
.curl-top-left {
display: inline-block; /* ํํ */
position: relative;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
โ
.curl-top-left:before {
pointer-events: none;
position: absolute;
content: '';
height: 0; /* ๋์ด */
width: 0; /* ๋๋น */
top: 0;
left: 0;
background: white; /* ๋ฐฐ๊ฒฝ ์ */
/* IE9 */
background: linear-gradient(135deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#000000');
/*For IE7-8-9*/
z-index: 1000;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
transition-duration: 0.3s;
transition-property: width height;
}
โ
.curl-top-left:hover:before {
width: 16px; /* ๋๋น */
height: 16px; /* ๋์ด */
}
</style>
</head>
<body>
<div id="container">
<header>
<nav>
<ul id="main-nav">
<li><a href='#'><b>์ฌ์ดํธ ์๊ฐ</b></a></li>
<li><a href='catinfo.html'><b>๊ณ ์์ด ๋ถ์</b></a></li>
<li><a href='catshow.html'><h1>๊ณ ์์ด ์๋</h1></a></li>
<li><a href='#'><b>๊ณ ๊ฐ์ผํฐ</b></a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<form id="form" action="-" method="post">
<div id="content">
<div>
<h3 class="join_title">
<label for="cat_name">์ด๋ฆ</label>
</h3>
<span class="box int_id">
<input type="text" id="cat_name" class="int" name="cat_name">
</span>
</div>
<div>
<h3 class="join_title"><label for="add">์ฃผ์</label></h3>
<span class="box">
<select id="add" class="sel" name = "add">
<option>์ฃผ์</option>
<option value="seoul">์์ธ</option>
<option value="daejeon">๋์ </option>
<option value="daegu">๋๊ตฌ</option>
<option value="gwangju">๊ด์ฃผ</option>
<option value="incheon">์ธ์ฒ</option>
</select>
</span>
</div>
โ
<div>
<h3 class="join_title"><label for="gender">์ฑ๋ณ</label></h3>
<span class="box gender_code">
<select id="gender" class="sel" name="catsgender">
<option>์ฑ๋ณ</option>
<option value="M">๋จ์</option>
<option value="F">์ฌ์</option>
</select>
</span>
</div>
<div>
<h3 class="join_title"><label for="gender">์ข์ํ๋ ๊ฒ</label></h3>
<span class="box gender_code">
<select id="gender" class="sel" name="catslike">
<option>์ข์ํ๋ ๊ฒ</option>
<option value="fish">์์ </option>
<option value="meat">๊ณ ๊ธฐ</option>
<option value="milk">์ฐ์ </option>
<option value="cannedfood">ํต์กฐ๋ฆผ</option>
</select>
</span>
</div>
<div>
<h3 class="join_title">
<label for="id">์ฃผ์ธ์ด๋ฆ</label>
</h3>
<span class="box int_id">
<input type="text" id="id" class="int" maxlength="20" name="master_name">
</span>
</div>
<div>
<h3 class="join_title">
<label for="id">๋ฉ์ผ</label>
</h3>
<span class="box int_id">
<input type="text" id="email" class="int" name="email">
</span>
</div>
<div>
<h3 class="join_title">
<label for="id">์์ธ์ค๋ช
</label>
</h3>
<textarea rows="20" cols="65" name="content"></textarea>
</div>
<div>
<h3 class="join_title">
<label for="file">ํ์ผ์ฒจ๋ถ</label>
</h3>
<input type="file" name="file" id="file">
</div>
โ
<div class="button_area">
<button type="submit" id="button">
<span><b>์๋ํ๊ธฐ</b></span>
</button>
</div>
</div>
</form>
</div>
</body>
</html>
๋ฐ์ํ
'HTML5 & CSS3' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[์ํ์ฝ๋ฉ-WEB1] ์น์ฌ์ดํธ ์์ฑ (0) | 2021.06.20 |
---|---|
[HTML5 & CSS3] ์ค์ต - ๊ณ ์์ด ๋ถ์ ํ์ด์ง (์ฌํ) (0) | 2021.02.15 |
[HTML5 & CSS3] ์ค์ต - ๊ณ ์์ด ๋ถ์ ํ์ด์ง ๋ง๋ค๊ธฐ (0) | 2021.02.15 |
[HTML5 & CSS3] ๊ณผ์ (0) | 2021.02.15 |
[HTML5 & CSS3] ํ๋ ์ค ๋ฐ์ค ํญ๋ชฉ ๋ฐฐ์น๋ฅผ ์ํ ์์ฑ๋ค (2) | 2021.02.15 |
๋๊ธ