-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (77 loc) · 3.99 KB
/
index.html
File metadata and controls
82 lines (77 loc) · 3.99 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
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<div class="container-fluid bg-primary" style="height: 100vh;">
<div class="row h-100">
<div class="col-3 bg-dark text-center">
<div class="w-100 my-3">
<img class="w-100 rounded-pill" src="./image/Star_Wars_Logo.png" alt="Star Wars">
</div>
<hr class="w-75 mt-4 mb-3 mx-auto bg-secondary" style="height: 2px;">
<nav class="navbar justify-content-center p-0">
<ul class="navbar-nav w-50">
<li class="nav-item bg-dark w-100 my-2 rounded">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item bg-dark w-100 my-2 rounded">
<a class="nav-link" href="#">Characters</a>
</li>
<li class="nav-item bg-dark w-100 my-2 rounded">
<a class="nav-link" href="#">Form</a>
</li>
</ul>
</nav>
</div>
<div class="col-9 bg-success px-5 py-3">
<h1 class="m-0 px-3">Heading 1</h1>
<hr class="w-100 mx-auto" style="height: 2px;">
<section class="d-flex">
<div class="half d-flex justify-content-center align-items-center py-2">
<img id="bigPic" class="rounded" src="./image/maz.jpg" alt="Maz">
</div>
<div class="half-2 px-3 py-2">
<p class="m-0">Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis recusandae
delectus
qui, molestias deserunt incidunt ratione. Molestiae iure quod ratione impedit laborum
tempora quia velit perferendis reiciendis quidem. Eligendi, debitis?</p>
</div>
</section>
<hr class="w-100 mx-auto" style="height: 2px;">
<section class="d-flex">
<div class="half-2 d-flex gap-2 flex-wrap justify-content-evenly">
<div class="card text-white border-0 bg-transparent">
<img class="card-img w-100 h-100" src="./image/maz.jpg" alt="Card Image">
<div class="card-img-overlay p-0 text-center d-flex align-items-end justify-content-center">
<p class="card-text">Anakin</p>
</div>
</div>
</div>
<div class="half">
s
</div>
</section>
<hr class="w-100 mx-auto" style="height: 2px;">
<!-- <form action="#">
<label for="char_name">Character Name:</label>
<input type="text" name="char_name" id="charName">
<label for="char_pic">Character Picture</label>
<input type="file" name="char_pic" id="charPic">
<label for="char_info">About the character:</label>
<textarea name="char_info" id="aboutChar" cols="30" rows="4"></textarea>
</form> -->
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>