-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanim.html
More file actions
71 lines (60 loc) · 2.14 KB
/
Copy pathanim.html
File metadata and controls
71 lines (60 loc) · 2.14 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
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<meta name="index" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<style>
body {
background-color: rgb(0, 0, 0);
color: white;
}
</style>
<body>
<!-- Navbar (note: href doesn't link)-->
<nav class="navbar navbar-expand-sm justify-content-center">
<a class="navbar-brand" href="#">
<!-- Code to make the pop up on my face-->
<div class="popup" onclick="myFunction()"><img src="me.jpg" class="rounded-circle" alt="Me-echo" style="width:40px;">
</div>
<script>
// When the user clicks on div, open the popup
function myFunction() {
var popup = document.getElementById("myPopup");
popup.classList.toggle("show");
}
</script>
</a>
<!-- Navbar links -->
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link text-white" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link text-white" href="dma.html">DMA work</a></li>
<li class="nav-item"><a class="nav-link text-white" href="gd.html">Graphic Design</a></li>
<li class="nav-item"><a class="nav-link text-white" href="anim.html">Animations</a></li>
<li class="nav-item"><a class="nav-link text-white" href="vg.html">Video Game Work</a></li>
</ul>
</nav>
<div class="jumbotron jumbotron-fluid bg-dark">
<div class="container">
<h1 class="text-center">Home</h1>
<br>
<h3 class="text-center">Christian Acosta</h3>
<br><br>
<h3 class="text-center">About Me</h3>
</div>
</div>
<!-- <div class="jumbotron jumbotron-fluid bg-dark">
<div class="container">
<p class="text-center">Hello I am Christian Acosta</p>
</div>
</div> -->
</body>
</html>