-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
73 lines (70 loc) · 3.91 KB
/
contact.html
File metadata and controls
73 lines (70 loc) · 3.91 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
<!DOCTYPE html>
<html>
<head>
<title>Harsh Gangaramani's Portfolio</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#menu">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="index.html">Harsh Gangaramani</a>
<div class="collapse navbar-collapse" id="menu">
<ul class="navbar-nav">
<li class="nav-item active">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="education.html" class="nav-link">Education</a>
</li>
<li class="nav-item">
<a href="awards.html" class="nav-link">Awards</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="pt-3">
<!-- Content starts here -->
<ul>
<li><a href="mailto:harsh@example.com">Email</a></li>
<li><a href="tel:902-990-9920">Call me</a></li>
</ul>
<h6>Feedback is much appreciated</h6>
<form>
<div class="form-group">
<label for="exampleFormControlInput1">Your Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com">
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">How did you like my bootstrap Portfolio</label>
<select class="form-control" id="exampleFormControlSelect1">
<option>>:(</option>
<option>:(</option>
<option>:|</option>
<option>:)</option>
<option>:D</option>
</select>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Any additional comments?</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<button type="button" class="btn btn-link"><a href="https://yes.com/game/">Extra: a website I found on accident if you're bored</a></button>
<!-- Content ends here -->
</div>
</div>
</body>
</html>