-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 2.33 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Cats.com</title>
<link rel="stylesheet" href="validation.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="card align-items-center">
<div class="card-body">
<!-- Title -->
<h4 class="card-title text-center">Cats.com</h4>
<!-- Form -->
<form name="form">
<!-- First Name -->
<div class="form-group">
<label for="firstName">First name</label>
<input class="form-control" name="firstName" type="text" placeholder="First Name">
</div>
<!-- Last Name -->
<div class="form-group">
<label for="lastName">Last name</label>
<input class="form-control" name="lastName" type="text" placeholder="Last Name">
</div>
<!-- Email -->
<div class="form-group">
<label for="email">Email</label>
<input class="form-control" name="email" type="text" placeholder="Email">
</div>
<!-- Phone Number -->
<div class="form-group">
<label for="phone">Phone Number</label>
<input class="form-control" name="phone" type="text" placeholder="Phone Number">
</div>
<!-- Buttons action -->
<div class="form-group text-center">
<button type="submit" class="btn btn-primary">Submit</button>
<button type="reset" class="btn btn-secondary">Clear</button>
</div>
</form>
<!-- Alert message -->
<div class="alert"></div>
</div>
</div>
</div>
</body>
<script src="validation.js"></script>
</html>