-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (77 loc) · 3.33 KB
/
index.html
File metadata and controls
89 lines (77 loc) · 3.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="he">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<title>Tech4Bio2025</title>
<link rel="stylesheet" href="./style.css">
<link href='https://fonts.googleapis.com/css?family=Assistant' rel='stylesheet'>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<script defer src="./DemosPage.js"></script>
<script defer src="./HomePage.js"></script>
<script defer src="./CallForAbstractsPage.js"></script>
<script defer src="./OrganizingCommitteePage.js"></script>
<script defer src="./SocialEventPage.js"></script>
<script defer src="./RegisterPage.js"></script>
<script defer src="./VenueAndTravelingPage.js"></script>
<script defer src="./KeynoteSpeakersPage.js"></script>
<script defer src="./Popup.js"></script>
<script defer src="./SponsorsPage.js"></script>
<script defer src="./script.js"></script>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
</head>
<body>
<header>
<div class="menu">
<button onclick="showContent('Home')">Home</button>
<span class="separator"></span>
<button onclick="showContent('CallForAbstracts')">Call for abstracts</button>
<span class="separator"></span>
<button onclick="showContent('OrganizingCommittee')">Organizing Committee</button>
<span class="separator"></span>
<button onclick="showContent('KeynoteSpeakers')">Keynote speakers</button>
<span class="separator"></span>
<button onclick="showContent('SocialEvent')">Social Event</button>
<span class="separator"></span>
<button onclick="showContent('VenueAndTraveling')">Venue & Traveling</button>
<span class="separator"></span>
<button onclick="showContent('Demos')">Demos</button>
<span class="separator"></span>
<button onclick="showContent('Register')">Register</button>
<span class="separator"></span>
<button onclick="showContent('Sponsors')">Sponsors</button>
</div>
<img src="img/Tech4Bio_logo.jpg" alt="Tech4Bio_logo" class="logo-img">
<div class="hamburger-menu">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</header>
<div class="background-imgs">
<img src="img/header_img.jpeg" alt="header_img" class="background-top-demos">
<img src="img/demos_back.jpeg" alt="demos_back" class="background-bottom-demos">
</div>
<div id="home-header">
<div class="home-header">
<h2>Tech4Bio 2025</h2>
<p>11th Haifa Conference in Marine Sciences</p>
<h3>October 21-22, 2025</h3>
</div>
</div>
<div class="content">
<home-page></home-page>
</div>
<!--
<footer>
<div class="icons">
<img src="./img/ANL_logo.png" alt="ANL_logo" class="icon">
<img src="./img/labust_logo.png" alt="labust_logo" class="icon">
<img src="./img/LogoSchool.png" alt="LogoSchool" class="icon">
<img src="./img/LogoMorrisKahn.png" alt="LogoMorrisKahn" class="icon">
</div>
-->
</footer>
</body>
</html>