-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
77 lines (69 loc) · 3.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CONTACT</title>
<link rel="stylesheet" href="../portfolio/simple-grid/simple-grid.css" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Redressed&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--NAVIGATION target="_blank"-->
<section class="container">
<nav class="row">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="front-end.html">FRONT END</a></li>
<li><a href="back-end.html">BACK END</a></li>
<li><a href="my-blog.html">MY BLOG</a></li>
<li>CONTACT ME</li>
</ul>
</nav>
</section>
<!-- TITLE -->
<section class="container title-color">
<div class="row">
<a class="col-4 col-6-sm center" href="index.html"><img src="professional-pic.jpg" alt="a picture of a black woman wearing a black shirt" width="100%"></a>
<h1 class="col-8 col-6-sm center">Kanyisa Ntombini</h1>
</div>
</section>
<!-- CONTENT -->
<section class="container">
<form action="">
<p>Please fill in the following:</p>
<label for="fname">Name:</label><br>
<input type="text" id="fname" name="fname" class="col-6 col-12-sm">
<br><br>
<label for="lname">Surname: </label><br>
<input type="text" id="lname" name="lname" class="col-6 col-12-sm">
<br><br>
<label for="message">Message: </label><br>
<textarea name="message" id="message" cols="30" rows="10" class="col-6 col-12-sm"></textarea>
<br><br>
<input type="submit" value="Submit" class="col-3 col-6-sm">
</form>
</section>
<section class="container">
<p>Alternatively please send an email to kanyisa.ntombini@gmail.com</p>
</section>
<footer class="container">
<!-- SOCIAL MEDIA -->
<section class="row">
<!-- EMPTY -->
<div class="col-2 col-2-sm"></div>
<!-- LINKEDIN -->
<a class="col-2 col-2-sm" href="" target="_blank"><img src="../cv-webpage/icons/linkedin.png" width="100%" alt="twitter icon"></a>
<!-- TWITTER -->
<a class="col-2 col-2-sm" href="https://twitter.com/NtombiniKanyisa" target="_blank"><img src="../cv-webpage/icons/twitter.png" width="100%" alt="linkedin icon"></a>
<!-- PATREON -->
<a class="col-2 col-2-sm" href="" target="_blank"><img src="../cv-webpage/icons/patreon.png" width="100%" alt="patreon icon"></a>
<!-- GITHUB -->
<a class="col-2 col-2-sm" href="https://github.com/Kanyisa-Ntombini" target="_blank"><img src="../cv-webpage/icons/github.png" width="100%" alt="github icon"></a>
<!-- EMPTY -->
<div class="col-2 col-2-sm"></div>
</section>
<!-- COPYRIGHT -->
<div class="center"><p>© 2021 by Kanyisa Ntombini</p></div>
</footer>
</body>
</html>