-
Notifications
You must be signed in to change notification settings - Fork 0
/
HarshPatel.html
58 lines (56 loc) · 2.57 KB
/
HarshPatel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Harsh Patel</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Roboto+Mono:wght@700&display=swap" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="./assets/favicon.png">
</head>
<body>
<div class="header">
<img src="./assets/ganesh.png" alt="Header Image">
</div>
<div class="card-container">
<div class="card" id="flipCard">
<div class="card-front">
<h5 class="font-weight-bold">Biodata</h5>
<img class="pop-img" src="./assets/harsh1.jpg" alt="Profile Picture">
<div class="details">
<h4 class="font-weight-bold">Harsh Patel</h4>
<h5>Software Engineer</h5>
</div>
</div>
<div class="card-back">
<h5 class="text-center font-weight-bold w-100 mb-3">My Details</h5>
<div class=" overflow-auto d-none" id="back-card">
<dl class="detail-list" id="detail-list"></dl>
<hr class="mt-5">
<h5 class="m-0 font-weight-bold w-100 text-center">Images</h5>
<div id="all-images"></div>
</div>
</div>
</div>
</div>
<div class="hint-footer cursor-pointer text-center" id="clickToFlap">
<h5 class="m-0 pb-3 font-weight-bold buttonFlipCard">Click to flip</h5>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script type="text/javascript" src="./main.js"></script>
</body>
<!-- Creates the bootstrap modal where the image will appear -->
<div class="modal fade" id="imagemodal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog h-100 d-flex justify-conent-center align-items-center">
<div class="modal-content">
<div class="modal-body px-3 pb-4 pt-0">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="" class="imagepreview" style="width: 100%;" >
</div>
</div>
</div>
</div>
</html>