-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML and CSS 6.html
40 lines (37 loc) · 1.45 KB
/
HTML and CSS 6.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!Doctype html>
<html>
<head>
<title>HTML and CSS 5</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<div><form method = "post" action = "index.html"></form>
<input type="submit"/>
</div>
<Div>
<h1>Sign up form</h1>
</Div>
<div class = "form-group">
<Legend>Your basic info</Legend>
<label for="name">Name</label>
<input id="name" type="text" class="form-control">
<label for="Email">Email</label>
<input id="email" type="text" class="form-control">
<label for="password">Password</label>
<input id="password" type="text" class="form-control">
</div>
<div class = "form-group">
<form>
<input type="radio" name="Gender" value="Male"/>Male
<input type="radio" name="Gender" value="Female"/>Female
<input type="radio" name="Non-binary" value="Non-binary"/>Non-binary
</form>
</div>
<div>
<button type="button" >Sign up</button>
</div>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
</body>
</html>