-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (47 loc) · 1.85 KB
/
index.html
File metadata and controls
57 lines (47 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Said's big big world</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="spinner.css">
<script src="script.js"></script>
</head>
<body>
<div class="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<img class= "logowebsite" src="logowebsite.png" alt= /img>
</ul>
</nav>
<audio id="backgroundMusic" autoplay loop volume="0.5">
<source src="artificial-intelligence.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
<script>
document.addEventListener("DOMContentLoaded", function() {
var audio = document.getElementById("backgroundMusic");
setTimeout(function() {
audio.currentTime = 0; // Reset the playback to the beginning
audio.play();
}, 10000); // 30 seconds in milliseconds
});
</script>
<div class="home-container">
<div class="home-content">
<p>Hi, I'm <strong>Nursaid Kamilli</strong> <br>Cybersecurity Enthusiast</br></p>
</div class="photoweb">
<div>
<img class="photoweb2" src="photoforweb2.svg" alt="Your Photo">
</div>
</div>
<footer class="footer">
<p>© 2023 NursaidKamilli</p>
<a href="https://www.linkedin.com/in/nursaid-kamilli" target="_blank">Contact me</a>
</footer>
</body>
</html>