-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<title>Bracha world</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/gallery.css">
<link rel="stylesheet" href="css/slideshow.css">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" type="image/x-icon" href="jpg/site_logo.png">
</head>
<body>
<header>
<h1>The world of Guy Bracha</h1>
<body onload="startTime()">
<div id="txt"></div>
<script src="scripts/clock.js"></script>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Original_content.html">Portfolio</a></li>
<li style="float:right"><a class="active" href="Author.html">Meet the Creator</a></li>
</ul>
</nav>
<article>
<h2>Welcome to the realm of the Neo-Bohemian</h2>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="jpg/crop1.png" style="width:100%">
<div class="text">He's a Gentleman</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="jpg/crop2.png" style="width:100%">
<div class="text">an Artist</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="jpg/crop3.png" style="width:100%">
<div class="text">And a Neo-Bohemian</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
<script src="scripts/index.js"></script>
<script src="scripts/java.js"></script>
</article>
<footer>
<p>Developed By Guy Bracha - 2022</p>
<a href="mailto:guy.bracha@gmail.com">guy.bracha@gmail.com</a></p>
</footer>
</body>
</html>