-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Movies</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" href="index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=REM:wght@200;300&family=Roboto+Condensed:wght@300;700&family=Roboto+Slab&family=Rubik:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=REM:wght@200;300&family=Roboto+Condensed:wght@300;700&family=Roboto+Slab&family=Rubik:wght@400;500&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="row" id="parent">
<div id="aside" class="col-md-2 mt-5 bg-black">
<div class="d-flex justify-content-center">
<button type="button" class="btn btn-danger" id="home">HOME</button>
</div>
<div class="input-group mb-3 mt-5">
<input type="text" placeholder="Search..." id="input" />
</div>
<section id="childOne" class="d-flex flex-column gap-2"></section>
</div>
<div id="content" class="col-md-10 mt-5 p-4">
<div class="row gap-3 movie">
<div class="col-md-2 movies gap-3 mt-3">
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS7KVAOuBKNiJwKPzOK_Hc3-eZHW_EwMTIxxe7Pk5KQBg&s"
alt=""
/>
<h6 style="text-align: center">talk</h6>
<p style="text-align: center">souhail</p>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>