Bootstrap 간단 한 표,폼,로그 인 페이지 공유
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet">
<script src="js/jquery-1.9.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<h1> </h1>
<table class="table table-striped">
<thead>
<tr>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</thead>
<tbody>
<tr>
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
<tr>
<td>1002</td>
<td> </td>
<td> </td>
<td>2000</td>
<td> </td>
</tr> <tr>
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
<tr>
<td>1002</td>
<td> </td>
<td> </td>
<td>2000</td>
<td> </td>
</tr> <tr>
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
</tbody>
</table>
<h1> </h1>
<table class="table table-bordered table-hover table-condensed">
<thead>
<tr>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</thead>
<tbody>
<tr>
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
<tr>
<td>1002</td>
<td> </td>
<td> </td>
<td>2000</td>
<td> </td>
</tr> <tr>
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
<tr>
<td>1002</td>
<td> </td>
<td> </td>
<td>2000</td>
<td> </td>
</tr> <tr>
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
</tbody>
</table>
<h1> </h1>
<table class="table ">
<thead>
<tr class="active">
<th> </th>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</thead>
<tbody>
<tr class="success">
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
<tr class="info">
<td>1002</td>
<td> </td>
<td> </td>
<td>2000</td>
<td> </td>
</tr>
<tr class="warning">
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
<tr class="danger">
<td>1002</td>
<td> </td>
<td> </td>
<td>2000</td>
<td> </td>
</tr> <tr>
<td>1001</td>
<td> </td>
<td> </td>
<td>1000</td>
<td> </td>
</tr>
</tbody>
</table>
</body>
</html>
2.양식
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet">
<script src="js/jquery-1.9.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<input type="text" name="" class=" form-control" placeholder=" ">
<div class="form-group has-success has-feedback ">
<label class="control-label"> :</label>
<input type="text" name="" class=" form-control input-lg " placeholder="input-lg">
<span class="glyphicon glyphicon-ok form-control-feedback"></span>
</div>
<div class="form-group has-success has-feedback ">
<label class="control-label"> :</label>
<input type="text" name="" class=" form-control input-sm " placeholder="input-sm">
<span class="glyphicon glyphicon-ok form-control-feedback"></span>
</div>
<hr/>
<h3> </h3>
<textarea class="form-control" rows="5" ></textarea>
<h3> </h3>
:<br/>
<div class="checkbox">
<label>
<input type="checkbox" value=""/>
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" value=""/>
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" value=""/>
</label>
</div>
:<br/>
<div class="radio">
<label>
<input type="radio" name="sex" value=" "/>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="sex" value=" "/>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="sex" value=" "/>
</label>
</div>
<br/>
:<br/>
:<br/>
<div class=" checkbox-inline">
<label>
<input type="checkbox" value=""/>
</label>
</div>
<div class="checkbox-inline">
<label>
<input type="checkbox" value=""/>
</label>
</div>
<div class="checkbox-inline">
<label>
<input type="checkbox" value=""/>
</label>
</div>
:<br/>
<div class="radio-inline">
<label>
<input type="radio" name="sex" value=" "/>
</label>
</div>
<div class="radio-inline">
<label>
<input type="radio" name="sex" value=" "/>
</label>
</div>
<div class="radio-inline">
<label>
<input type="radio" name="sex" value=" "/>
</label>
</div>
:
<select class="form-control">
<option> </option>
<option> </option>
<option> </option>
<option> </option>
</select>
</div>
</body>
</html>
로그 인
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet">
<script src="js/jQuery-1.9.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="Container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<h1 class="page-header"> </h1>
<form role="form">
<div class="form-group">
<label for="userId"> :</label>
<input type="text" class="form-control" placeholder=" " id="userId" name="userId">
</div>
<div class="form-group">
<label for="password"> :</label>
<input type="password" class="form-control" placeholder=" " id="password" name="password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"/>
</label>
<br/>
<input type="submit" value=" " class="btn"/>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet">
<script src="js/jquery-1.9.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1 class="page-header"> </h1>
<form class="form-inline" role="form">
<div class="form-group">
<div class="input-group" >
<div class="input-group-addon">@</div>
<input type="text" class="form-control" placeholder=" " id="userId" name="userId">
</div>
</div>
<div class="form-group">
<label for="password" class="sr-only"> :</label>
<input type="password" class="form-control" placeholder=" " id="password" name="password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"/>
</label>
<input type="submit" value=" " class="btn"/>
</div>
</form>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet">
<script src="js/jquery-1.9.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class=" container">
<div class="row">
<div class="col-md-6">
<h2> </h2>
<form class="form-horizontal" role="form">
<div class="form-group has-success ">
<label class="col-md-3 control-label" for="userId"> :</label>
<div class="col-md-6">
<input type="text" class="form-control" placeholder=" " id="userId" name="userId">
</div>
<span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
</div>
<div class="form-group has-error">
<label class="col-md-3 control-label" for="password"> :</label>
<div class="col-md-6">
<input type="password" class="form-control" placeholder=" " id="password" name="password">
</div>
</div>
<div class="form-group">
<div class="col-md-4 col-md-offset-3">
<input type="submit" value=" " class="btn"/>
<input type="reset" value=" " class="btn"/>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet">
<script src="js/jquery-1.9.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class=" container">
<div class="row">
<div class="col-md-6">
<h2> </h2>
<form class="form-horizontal" role="form">
<div class="form-group">
<label class="col-md-3 control-label" for="userId"> :</label>
<div class="col-md-6">
<p class=" form-control-static">admin123456</p>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" for="password"> :</label>
<div class="col-md-6">
<p class="form-control-static">123456</p>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
총결산위 에서 말 한 것 은 소 편 이 여러분 에 게 소개 한 Bootstrap 간단 한 표,폼,로그 인 페이지 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
부트스트랩 5 스티커Sticky는 페이지의 특정 영역에서 요소를 잠글 수 있도록 하는 구성 요소입니다. 수동 설치(zip 패키지) 부트스트랩 이미지 구성 요소를 활용하고 프로젝트에서 사용하려면 먼저 을 설치해야 합니다. MDB CLI ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.