Untitled
unknown
plain_text
3 years ago
3.3 kB
8
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="../asset/script.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<form>
<div class="form-group">
<label for="fname">name:</label>
<input type="text" class="form-control" id="fname" name="fname">
</div>
<div class="form-group">
<label for="lname">lasr name</label>
<input type="text" class="form-control" id="lname" name="lname">
</div>
<div class="form-group">
<label for="num">phone number</label>
<input type="text" class="form-control" id="num" name="num">
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="sex" id="male" value="male" checked>
<label class="form-check-label" for="sex">
male
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="sex" id="female" value="female">
<label class="form-check-label" for="sex">
female
</label>
</div>
<div class="form-group">
<label for="text">exp</label>
<textarea class="form-control" id="tex" name="text"></textarea>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<div class="col"></div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin="anonymous"></script>
</body>
</html>Editor is loading...