-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
114 lines (113 loc) · 5.59 KB
/
contact.html
File metadata and controls
114 lines (113 loc) · 5.59 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Portfolio - Work</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<style>
body {
background-color:white;
}
footer {
background-color: white;
}
.navbar {
background-color: #4681f8;
}
#myLinks {
max-width:450px;
}
.background {
width: 100%;
background-color: white;
}
.list-group-item, .list-group-item.disabled {
background-color: white;
}
.list-group-item.active {
background-color: #a2a2a2;
}
a.list-group-item.list-group-item-action:hover {
color: #6ea268;
}
</style>
</head>
<body>
<!-- This is your navigation bar. See: https://getbootstrap.com/docs/4.0/components/navbar/-->
<nav class="navbar navbar-expand-sm navbar-light">
<div class="container">
<!-- Here is where you will add your name -->
<a class="navbar-brand" href="#">Vanessa Bastien</a>
<button class="navbar-toggler d-lg-none" type="button" data-toggle="collapse" data-target="#collapsibleNavId" aria-controls="collapsibleNavId"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavId">
<ul class="navbar-nav ml-auto mt-lg-0">
<!-- In each list item (li) is where your links go -->
<li class="nav-item">
<!-- This is a link -->
<a class="nav-link" href="index.html">Home </a>
</li>
<li class="nav-item">
<!-- This is a link -->
<a class="nav-link" href="work.html">Work</a>
</li>
<li class="nav-item active">
<!-- This is a link -->
<a class="nav-link" href="contact.html" disabled>Contact <span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</div>
</nav>
<div class="background">
<!-- The container contains all of your body content -->
<main class="container">
<div class="row">
<div class="col-md-6 col-sm-12 mt-3 mb-3">
<div id="myImage">
<!-- Your image goes here -->
<img src="assets/images/VanessaBastien.jpg" alt="Vanessa Bastien Profile Image" height="auto" width="100%">
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="row">
<div class="col-sm-12 mt-3">
<header><h1>Contact Me</h1></header>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<!-- Your links go here -->
<div id="myLinks">
<!-- This is a list group. Even though we are not using <ol>, <ul>, or <li> we can still create a list group using classes. See: https://getbootstrap.com/docs/4.0/components/list-group/-->
<div class="list-group list-group-flush mt-2">
<!-- These are list items. -->
<a href="https://github.com/yourName" class="list-group-item list-group-item-action">
github.com/VKathryn
</a>
<a href="https://linkedin.com/in/vanessabastien" target="_blank" class="list-group-item list-group-item-action">linkedin.com/in/VanessaBastien</a>
<a href="mailto:vkbastien@gmail.com?subject=Coming From Your Website" target="_blank" class="list-group-item list-group-item-action">vkbastien@gmail.com</a>
<!-- <a href="tel:5555551212" class="list-group-item list-group-item-action">(555) 555-1212</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
<footer>
<div id="footerContent">
<!-- This is a horizontal rule. It creates a line that spans across the whole page -->
<p class="text-center mt-3">Vanessa Bastien © 2022</p>
</div>
</footer>
</body>
</html>