-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
138 lines (126 loc) · 4.04 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
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Bruna</title>
<link rel="stylesheet" href="./css/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;1,300&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="./img/android-chrome-512x512.png"
type="image/x-icon"
/>
</head>
<body>
<header class="page-header">
<!-- Add logo here -->
<img
src="./img/android-chrome-512x512.png"
alt="bruna's logo"
class="logo page-header-item"
/>
<!-- navbar -->
<nav role="menubar" class="navigation-list page-header-item">
<ul>
<li role="presentation">
<a href="./index.html" role="menuitem">Home</a>
</li>
<li role="presentation">
<a href="./about.html" role="menuitem">About me</a>
</li>
<li role="presentation">
<a href="./work.html" role="menuitem">Work</a>
</li>
<li role="presentation">
<a href="./contact.html" role="menuitem">Contact</a>
</li>
</ul>
</nav>
</header>
<div class="contact-section">
<h1>contact</h1>
<!-- <section>
<b>CareerFoundry GmbH</b>
<p>c/o Factory Görlitzer Park</p>
<p>Lohmühlenstraße 65</p>
<p>12435 Berlin</p>
<p>Deutschland</p>
<br />
<a href="tel:+49 30 4849 2016">Tel: +49 30 4849 2016</a>
<br />
<a href="mailto:[email protected]"
>Email: [email protected]</a
>
<br />
Skype <a href="skype:hello.careerfoundry"> hello.careerfoundry</a><br />
<a href="mailto:[email protected]">contact me!!!</a>
</section> -->
<section class="form-section">
<h2>send me a message!</h2>
<form action="" method="post" id="contact-form" role="form">
<!-- email -->
<div>
<label for="email" class="standard-label">email</label>
<input type="email" id="email" required />
</div>
<!-- phone -->
<div>
<label for="tel" class="standard-label">telephone</label>
<input
type="tel"
id="tel"
pattern="\d{3}[\-]\d{3}[\-]\d{4}"
required
/>
</div>
<!-- message -->
<div>
<label for="msg" class="standard-label">text</label>
<textarea
name=""
id="msg"
cols="30"
rows="10"
maxlength="100"
required
></textarea>
</div>
<!-- submit button -->
<input type="submit" value="submit msg" />
</form>
</section>
</div>
<!-- footer -->
<footer class="footer">
<p>find me at:</p>
<!-- Add social mediia icons here -->
<div class="social-media">
<a href="https://github.com/brunabrunabruna" target="_blank">
<img src="./img/github.svg" alt="Github" />
</a>
<a href="https://twitter.com/bruna_A_V" target="_blank">
<img src="./img/twitter.svg" alt="Twitter"
/></a>
<a
href="https://www.linkedin.com/in/bruna-vasconcelos-07266213a/"
target="_blank"
>
<img src="./img/linkedin.svg" alt="Linkedin" />
</a>
</div>
<!-- <a class="back-to-top-link" href="#">back to top!</a> -->
</footer>
<!-- <script src="./js/tota11y.min.js"></script> -->
</body>
</html>