-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
66 lines (65 loc) · 4.14 KB
/
Copy pathcontact.html
File metadata and controls
66 lines (65 loc) · 4.14 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Contact | Stocks</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="author" content="Aarav Juneja">
<meta name="application-name" content="Stock Introduction">
<meta name="description" content="A quick introduction to how stocks work. This was made for my school genius hour project. The presentation part.">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="master.css">
<script src="index.js" charset="utf-8"></script>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-black w3-card">
<a class="w3-bar-item w3-button w3-padding-large w3-hide-medium w3-hide-large w3-right" href="javascript:void(0)" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="/Stocks" class="w3-bar-item w3-button w3-padding-large">Home</a>
<a href="types.html" class="w3-bar-item w3-button w3-padding-large w3-hide-small">Types of Stocks</a>
<a href="options.html" class="w3-bar-item w3-button w3-padding-large w3-hide-small">Options</a>
<a href="advanced.html" class="w3-bar-item w3-button w3-padding-large w3-hide-small">Advanced</a>
<a class="w3-bar-item w3-button w3-padding-large w3-hide-small">Contact</a>
<a href="javascript:void(0)" class="w3-padding-large w3-hover-red w3-hide-small w3-right"><i class="fa fa-search"></i></a>
</div>
</div>
<!-- Navbar on small screens (remove the onclick attribute if you want the navbar to always show on top of the content when clicking on the links) -->
<div id="navDemo" class="w3-bar-block w3-black w3-hide w3-hide-large w3-hide-medium w3-top" style="margin-top:46px">
<a href="types.html" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">Types of Stocks</a>
<a href="options.html" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">Options</a>
<a href="advanced.html" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">Advanced</a>
<a class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">Contact</a>
</div>
<br><br><br><br>
<div class="w3-container w3-content w3-padding-64" style="max-width:800px" id="contact">
<h1 class="w3-wide w3-center">CONTACT</h1>
<p class="w3-opacity w3-center"><i>Fan? Drop a note!</i></p>
<div class="w3-row w3-padding-32">
<!--<div class="w3-col m6 w3-large w3-margin-bottom">-->
<div class=" w3-large w3-margin-bottom w3-center">
<i class="fa fa-phone" style="width:30px"></i> Phone: (781)-218-2837<br>
<i class="fa fa-envelope" style="width:30px"> </i> Email: foraaravj@gmail.com<br>
</div>
<script type="text/javascript" src="https://platform.linkedin.com/badges/js/profile.js" async defer></script>
<div class="LI-profile-badge" data-version="v1" data-size="medium" data-locale="en_US" data-type="vertical" data-theme="dark" data-vanity="aarav-juneja-8184491b0" style="text-align:center"><a class="LI-simple-link" href='https://www.linkedin.com/in/aarav-juneja-8184491b0?trk=profile-badge'>Aarav Juneja</a></div>
<!--
<div class="w3-col m6">
<form action="contact.php" target="_blank">
<div class="w3-row-padding" style="margin:0 -16px 8px -16px">
<div class="w3-half">
<input class="w3-input w3-border" type="text" placeholder="Name" required name="Name">
</div>
<div class="w3-half">
<input class="w3-input w3-border" type="text" placeholder="Email" required name="Email">
</div>
</div>
<input class="w3-input w3-border" type="text" placeholder="Message" required name="Message">
<button class="w3-button w3-black w3-section w3-right" type="submit">SEND</button>
</form>
</div>-->
</div>
</div>
</body>
</html>