-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (88 loc) · 2.89 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Official site of Rabab Rahman</title>
<link href="RababR.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="title">
<div id=nav class=sideNav>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="About Me.html">About Me</a>
<a href="creations.html">Projects</a>
<a href="interests.html">My Interests</a>
<a href="beliefs.html">What I believe...</a></div>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<style type= "text/css">
body{
background-image: url(photo-of-starry.jpg);
background-size:cover
/*background-attachement=fixed;*/
}
h1{
margin:0
}
</style>
<div class="focus-in-expand">
<div class=swirl-in-bck>
<p>Hey, I'm...</p>
<h1>Rabab Rahman</h1>
</div>
<br>
<span>
<div class="mySlides fade">
<div class="numbertext"></div>
<img src="Rabab_picture1.JPG" style="width:100%">
</div>
<div class="mySlides fade">
<img src="Rabab_picture2.JPG" style="width:100%">
</div>
<div class="mySlides fade">
<img src= "Rabab_picture3.JPG" style= "width:100%">
</div>
</div>
</div>
<div class="mySlides fade">
<img src="Rabab_picture4.JPG" style="width:99%">
</div>
</div></span>
<br>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<div class= multimedia-container>
<div class="multimedia">
<h2>Follow Me!</h2>
<a href="https://codepen.io/Rababr1"><img src="iconfinder_56_939818.png" width="60px" height=60px></a>
<a href=https://www.twitch.tv/rababr1><img src="iconfinder_twitch_5017729.png"width="60px" height=60px></a>
<a href="https://repl.it/@RababRahman"><img src="repl.it button.png" width="60px" height=60px></a>
<a href="mailto:[email protected]"><img src="iconfinder_web_5_3924900.png" width="60px" height=50px></a></div></div>
<script src="finalR.js"></script>
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 2000); // Change image every 2 seconds
}
</script>
</body>
</html>