-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
121 lines (97 loc) · 4.01 KB
/
contact.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!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">
<link rel="stylesheet" href="Mystyles.css">
<!--
<link rel="stylesheet" href="bootstrap-4.3.1-dist/css/bootstrap.min.css">
-->
<titleContact Page</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!-- Using AOS
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
-->
</head>
<body>
<div class="container">
<div class="row-text">
<p class="text-center">Table List</p>
</div>
</div>
<!--
<div class="fade-up">Fade up</div>
-->
<div class="container">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Id</th>
<th scope="col">First Name</th>
<th scope="col">Last Name</th>
<th scope="col">Adresse</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mohamed</td>
<td>Sidi</td>
<td>Nouakchott</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Ahmed</td>
<td>Habib</td>
<td>Noudhibou</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Fatima</td>
<td>Alem</td>
<td>Rosso</td>
</tr>
</tbody>
</table>
</div>
<div class="container">
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-secondary">Edit</button>
<button type="button" class="btn btn-danger">Delete</button>
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="true">
Pages
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<button class="dropdown-item" type="button">Action</button>
<button class="dropdown-item" type="button">Another action</button>
<button class="dropdown-item" type="button">Something else here</button>
</div>
<footer>
<form>
<div class="row-text">
<h4 class="text-center">Contact us</h4>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 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>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous">
</script>
</body>
</html>