generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
126 lines (119 loc) · 6.38 KB
/
contact.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.1/css/hover-min.css" type="text/css" />
<link rel="stylesheet" href="assets/css/style.css">
<title>Camilla Dahlström</title>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js">
</script>
<script type="text/javascript">
(function(){
emailjs.init("user_IqNUb6XO9o-xv3NQp");
})();
</script>
</head>
<body>
<header>
<div class="row no-gutters">
<a class="col-md-4 logo" href="index.html"></a>
<div class="col-md-8">
<div class="row no-gutters bg-color-name-title">
<div class="col heading">
<h1 class="name">Camilla Dahlström</h1>
<h2 class="title">Student: Full Stack Developer</h2>
</div>
</div>
<div class="row no-gutters">
<div class="col">
<ul id="nav" class="list-inline menucontainer d-flex">
<li class="col menuitem ui-menu-color-home">
<a href="index.html" class="hvr-sweep-to-bottom"><i class="fa fa-home" aria-hidden="true"></i><span>Home</span></a>
</li>
<li class="col menuitem ui-menu-color-resume">
<a href="resume.html" class="hvr-sweep-to-bottom"><i class="fa fa-graduation-cap" aria-hidden="true"></i><span>Resume</span></a>
</li>
<li class="col menuitem ui-menu-color-contact">
<a href="contact.html" class="hvr-sweep-to-bottom"><i class=" fa fa-commenting-o" aria-hidden="true"></i><span>Contact</span></a>
</li>
<li class="col menuitem ui-menu-color-interests">
<a href="interests.html" class="hvr-sweep-to-bottom"><i class="fa fa-users" aria-hidden="true"></i><span>Interests</span></a>
</li>
<li class="col menuitem ui-menu-color-github">
<a href="github.html" class="hvr-sweep-to-bottom"><i class="fa fa-github" aria-hidden="true"></i><span>GitHub</span></a>
</li>
<li class="col menuitem ui-menu-color-download">
<a href="assets/Cv_eng.pdf" target="_blank" class="hvr-sweep-to-bottom"><i class="fa fa-download" aria-hidden="true"></i><span>Download CV</span></a>
</li>
</ul>
</div>
</div>
</div>
</header>
<section class="container-fluid">
<div class="row bg-color-contact">
<div>
<h3 class="contact-heading uppercase text-center">Got a project in mind?</h3>
<h5 class="uppercase text-center">Let's work together!</h5>
</div>
<div class="center-form">
<form onsubmit="return sendMail(this);">
<input type="text" name="name" class="form-control" id="fullname" placeholder="Name" required/>
<input type="text" name="emailaddress" class="form-control" id="emailaddress" placeholder="Email" required/>
<textarea rows="5" name="projectsummary" class="form-control" id="projectsummary" placeholder="Project Description" required></textarea>
<button type="submit" class="btn btn-secondary center-block">Send Project Request</button>
</form>
</div>
</div> </div>
</section>
<footer class="container-fluid">
<div id="footer-details" class="row">
<div class="col-sm-4">
<h5 class="uppercase general-sub">About</h5>
<p class="inline-block">
Full Stack Web Developer. Skilled in everything from HTML to Heroku. The capacity for structural and design thinking.
</p>
</div>
<div class="col-sm-4">
<h5 class="uppercase general-sub">Download</h5>
<p class="inline-block">
Need a printable version of my CV? Download it here.
<a href="assets/Cv_eng.pdf" target="_blank" class="cv-pdf">
<i class="fa fa-download" aria-hidden="true"></i>
<span class="sr-only">Download link.</span>
</a>
</p>
</div>
<div class="col-sm-4">
<h5 class="uppercase general-sub">Social</h5>
<ul class="list-inline social-links">
<li class="list-inline-item">
<a target="_blank" href="https://www.facebook.com/Camilla1977/">
<i class="fa fa-facebook" aria-hidden="true"></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.linkedin.com/in/camilladah/">
<i class="fa fa-linkedin" aria-hidden="true"></i>
<span class="sr-only">LinkedIn</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.instagram.com/camilladahlstromz">
<i class="fa fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram</span>
</a>
</li>
</ul>
</div>
</div>
</footer>
<script src="assets/js/sendEmail.js"></script>
</body>
</html>