-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (82 loc) · 3.75 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
90
91
92
<!DOCTYPE html>
<html>
<head>
<!-- This stylesheet contains specific styles for displaying the map
on this page. Replace it with your own styles as described in the
documentation:
https://developers.google.com/maps/documentation/javascript/tutorial -->
<!-- <link rel="stylesheet" href="/maps/documentation/javascript/demos/demos.css"> -->
<title>TRI demo</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="./styles/my.css">
<script src="./src/youtube.js" type="text/javascript"></script>
<script src="./src/googleMap.js" type="text/javascript"></script>
</head>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding-8 w3-card-2">
<a href="#home" class="w3-margin-left w3-bar-item w3-button">
<b>TRI</b> Demo
</a>
<!-- Float links to the right. Hide them on small screens -->
<div class="w3-right w3-hide-small">
<a href="#projects" class="w3-bar-item w3-button">Projects</a>
<a href="#about" class="w3-bar-item w3-button">About</a>
<a href="#contact" class="w3-bar-item w3-button w3-margin-right">Contact</a>
</div>
</div>
</div>
<!-- Header -->
<header class="w3-display-container w3-content w3-wide"
style="max-width:1500px;" id="home">
<img class="w3-image" src="./img/architect.jpg" alt="Architecture"
width="1500" height="800">
<div class="w3-display-middle w3-margin-top w3-center">
<h1 class="w3-xxlarge w3-text-white">
<a href="#projects" style="text-decoration:none">
<span class="w3-padding w3-black w3-opacity-min"><b>TRI</b></span>
<span class="w3-hide-small w3-text-light-grey">Demo Start</span>
</a>
</h1>
</div>
</header>
<!-- Page content -->
<div class="w3-content w3-padding" style="max-width:1564px">
<!-- Project Section -->
<div class="w3-container w3-padding-32" id="projects">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-12">Projects</h3>
</div>
<!-- Youtube -->
<div style="width:650px;height:400px;margin:auto">
<div id="player"></div>
</div>
<!-- Google Map -->
<div id="googleMap" style="width:80%;height:450px;margin:auto"></div>
<!-- About Section -->
<div class="w3-container w3-padding-32" id="about">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-12">About</h3>
<p>TRI project introductions and members description.</p>
</div>
<!-- Contact Section -->
<div class="w3-container w3-padding-32" id="contact">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-12">Contact</h3>
<p>Lets get in touch and talk about your and our project.</p>
<form action="/action_page.php" target="_blank">
<input class="w3-input" type="text" placeholder="Name" required name="Name">
<input class="w3-input w3-section" type="text" placeholder="Email" required name="Email">
<input class="w3-input w3-section" type="text" placeholder="Subject" required name="Subject">
<input class="w3-input w3-section" type="text" placeholder="Comment" required name="Comment">
<button class="w3-btn w3-section" type="submit">
<i class="fa fa-paper-plane"></i> SEND MESSAGE
</button>
</form>
</div>
<!-- End page content -->
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBG3dFzuy9MwDhSv1l1oZE_z4ZePYn-Sow&callback=initMap"
async defer></script>
</body>
</html>