-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.html
153 lines (137 loc) · 4.91 KB
/
hello.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<!-- <link href="https://fonts.googleapis.com/css2?family=Prompt&display=swap" rel="stylesheet"> -->
<!-- <link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css2?family=Cabin&display=swap" rel="stylesheet">
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Say Hello</title>
</head>
<body>
<!-- <header> -->
<nav class="navbar sticky-top navbar-expand-md navbar-dark" id="navbar">
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">About Me <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="skills.html">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="hello.html">Say Hello</a>
</li>
</ul>
</div>
</nav>
<!-- </header> -->
<main>
<div class="container-fluid">
<div class="row" id="main-row">
<div class="col-2" id="name-bar">
<div id="name">
<p>
S
</p>
<p>
T
</p>
<p>
E
</p>
<p>
P
</p>
<p>
H
</p>
<p>
A
</p>
<p>
N
</p>
<p>
I
</p>
<p>
E
</p>
<p id="bullet">
⚫️
</p>
<p>
G
</p>
<p>
I
</p>
<p>
E
</p>
<p>
L
</p>
</div>
</div>
<!-- start of say-hello -->
<section class="col-8" id="hello">
<div class="hello-form">
<div class="section-title">
<h1>Say Hello</h1>
</div>
<form action="MAILTO:familygiel@gmail.com">
<label for="email">Email</label>
<input type="email" placeholder="email address" name="email" id="email" class="hello-fi" />
<label for="contact-message">Message</label>
<textarea id="contact-message" placeholder="message" class="hello-fi"></textarea>
<button type="submit" value="submit">Submit</button>
</form>
</div>
</section>
<!-- end of say-hello -->
<!-- <section class="col-2"></section> -->
</div>
</div>
</main>
<footer class="container-fluid">
<div class="row">
<div class="col-2"></div>
<div class="col-8 justify-content-center" id="footer-col">
<p>Get in Touch  </p>
<div id="links">
<a href="mailto: familygiel@gmail.com/" target="_blank" class="fa fa-envelope"></a>
<a href="https://www.facebook.com/stephanie.giel/" target="_blank" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/sgiel/" target="_blank" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/in/stephanie-giel-5a3ab61ba/" target="_blank" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</footer>
<!-- for bootstrap -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>