-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
85 lines (72 loc) · 3.29 KB
/
contact.html
File metadata and controls
85 lines (72 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<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>
<title>Responsive Portfolio</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: yellow;width: 100%;">
<div class="dropdown show">
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false"
style="border: 3px solid yellowgreen; background-color: yellowgreen; padding:10px; margin-left: 1240px;">
Imani R. Dillahunt
</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink" style="padding:20px; margin-left: 1150px;">
<a class="nav-link" style=color:black href="index.html">
<box style="border: 3px solid yellowgreen; background-color: yellowgreen; padding:10px;">Home|About</box>
</a>
<a class="nav-link" style=color:black href="portfolio.html">
<box style="border: 3px solid yellowgreen; background-color: yellowgreen; padding:10px;">Portfolio</box>
</a>
<a class="nav-link" style=color:black href="contact.html">
<box style="border: 3px solid yellowgreen; background-color: yellowgreen; padding:10px;">Contact</box>
</a>
<a class="nav-link" style=color:black href="https://www.linkedin.com/in/imani-dillahunt-42b4891b9/">
<box style="border: 3px solid yellowgreen; background-color: yellowgreen; padding:10px;">Linkedin</box>
</a>
<a class="nav-link" style=color:black
href="https://docs.google.com/document/d/1e6loZ9RRvcvf7liZNyAK2ap6fPFCfvF_aXXoA-2fKxM/edit">
<box style="border: 3px solid yellowgreen; background-color: yellowgreen; padding:10px;">Resume</box>
</a>
</div>
</div>
</nav>
<div class="containerc">
<div class="row">
<div class="col-md-12">
<div class="contact">
<h1 class="contactbox">Questions or Comments</h1>
<hr id="hrc">
<div class="row">
<div class="col-md-12"></div>
<input type="text" name="name" id="name" placeholder="Name">
</div>
<div class="row">
<div class="col-md-12"></div>
<input type="text" name="Email" id="email" placeholder="Email">
</div>
<div class="row">
<div class="col-lg-12"></div>
<input type="text" name="Message" id="Message" placeholder="">
</div>
</div>
</div>
</div>
<button id="submit">Submit</button>
</div>
</div>
</body>
<footer class="f3">
Copyright 2020 Imani Dilllahunt
</footer>
</html>