-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboot.html
More file actions
70 lines (68 loc) · 3.26 KB
/
boot.html
File metadata and controls
70 lines (68 loc) · 3.26 KB
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
<!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="css/bootstrap.css"> -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="boot.css">
<title>Document</title>
</head>
<body>
<div class="main">
<div class="Nav bg-primary d-flex justify-content-between align-items-center">
<h1 class="text-dark">LOGO</h1>
<ul style="display: flex; list-style: none;">
<li style="margin-left: 20px; margin-right: 20px;" class="h3">Home</li>
<li style="margin-left: 20px; margin-right: 20px;" class="h3">Aboutus</li>
<li style="margin-left: 20px; margin-right: 20px;" class="h3">content</li>
</ul>
<button type="button" class="btn btn-dark" >Click</button>
</div>
<!-- anv bar ^ -->
<div class="aboutus d-flex justify-content-between">
<p class="h3 text-info h-50 w-50" style="letter-spacing: 2px; line-height: 1.8;">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Tempora iusto eos optio saepe explicabo repellendus natus, laborum quisquam nesciunt. Alias quam commodi nobis fugit hic repudiandae exercitationem temporibus, libero fugiat.</p>
<img src="./images.jpg" class="img" alt="">
</div>
<!-- mid section ^ -->
<div class="content d-flex justify-content-between">
<div class="one">
<img src="./download.jpg" class="img1" alt="">
<div class="d-flex flex-row ">
<button type="button" style="margin: 20px;" class="btn btn-info">Click</button>
<p class="h3 one1" style="margin: 20px;">4000$</p>
</div>
</div>
<div class="two">
<img src="./download.jpg" class="img1" alt="">
<div class="d-flex flex-row ">
<button type="button" style="margin: 20px;" class="btn btn-info">Click</button>
<p class="h3 two2" style="margin: 20px;">4000$</p>
</div>
</div>
<div class="three">
<img src="./download.jpg" class="img1" alt="">
<div class="d-flex flex-row ">
<button type="button" style="margin: 20px;" class="btn btn-info">Click</button>
<p class="h3 three3" style="margin: 20px;">4000$</p>
</div>
</div>
</div>
<!-- content^ -->
<div class="footer bg-dark d-flex flex-column justify-content-center align-items-center">
<p class="h1 text-white">Footer</p>
<p class="h2 text-white">my name is abdo lotfy</p>
<p class="h1 text-white">this is my bootstrap project</p>
<p class="h2 text-white"> i am front end developer</p>
</div>
<!-- footer^ -->
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
<!-- <script src="js/popper.min.js"></script>
<script src="js/jquery-3.6.3.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/bootstrap.bundle.min.js.map"></script> -->
</body>
</html>