-
Notifications
You must be signed in to change notification settings - Fork 0
/
photos.html
72 lines (65 loc) · 3.76 KB
/
photos.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<body class="body">
<div class="collapse" id="navbarToggleExternalContent">
<div class="p-4">
<h4><a href="epk.html" class="text-white h4">Home</a></h4>
<h4><a href="music.html" class="text-white h4">Music</a></h4>
<h4><a href="photos.html" class="text-white h4">Photos</a></h4>
<h4><a href="contact.html" class="text-white h4">Contact</a></h4>
</div>
</div>
<nav class="navbar navbar-dark">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</nav>
<div class="container">
<picture class="photo">
<source srcset="images/editIMG_7279.jpg" type="image/svg+xml">
<img src="images/editIMG_7279.jpg" height="300" width="300" class="img-fluid img-thumbnail" alt="...">
</picture>
<picture class="photo">
<source srcset="images/ms-incredible-photo.jpg" type="image/svg+xml">
<img src="images/ms-incredible-photo.jpg" height="300" width="300" class="img-fluid img-thumbnail" alt="...">
</picture>
<picture class="photo">
<source srcset="images/incredible-photo-sf.png" type="image/svg+xml">
<img src="images/incredible-photo-sf.png" height="300" width="300" class="img-fluid img-thumbnail" alt="...">
</picture>
<picture class="photo">
<source srcset="images/incredible-photo.jpg" type="image/svg+xml">
<img src="images/incredible-photo.jpg" height="300" width="300" class="img-fluid img-thumbnail" alt="...">
</picture>
</div>
<div class="footer">
<footer style="text-align:center">
<a href="https://msincredible.bandcamp.com/" target="_blank"><i class="fab fa-bandcamp"></i></a>
<a href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope-square"></i></a>
<a href="https://www.facebook.com/msincrediblehulk/" target="_blank"><i class="fab fa-facebook-square"></i></a>
<a href="https://www.instagram.com/msincrediblehulk/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://soundcloud.com/ms-incredible-hulk" target="_blank"><i class="fab fa-soundcloud"></i></a>
<a href="https://taleamonet.tumblr.com/" target="_blank"><i class="fab fa-tumblr-square"></i></a>
<a href="https://twitter.com/TaleaMonet" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.youtube.com/channel/UCHuI6jmQBHEi8bPr7YlKvCw/playlists?view_as=subscriber" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://cash.app/$TaLeaMonet" target="_blank"><i class="fas fa-donate"></i></a>
</footer>
</div>
<script>
var audio = $("#getby")[0];
$("nav a").mouseenter(function() {
audio.play();
});
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
</body>
</html>