-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
136 lines (135 loc) · 6.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hello, 8bit</title>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="https://unpkg.com/nes.css@latest/css/nes.min.css"
rel="stylesheet"
/>
<link href="assets/css/style.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
</head>
<body class="text-center">
<div class="container p-3 d-flex flex-column h-100 mx-auto">
<header class="mb-auto">
<h3 class="masthead-brand">
<i class="nes-icon coin"></i> Mario Mario
</h3>
<nav class="nav nav-masthead justify-center">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="portfolio.html">Portfolio</a>
<a class="nav-link" href="cv.html">CV</a>
<a class="nav-link active" href="contact.html">Contact</a>
</nav>
</header>
<div class="container nes-container with-title mt-5 is-centered">
<p class="title">Contact Me</p>
<div class="row">
<div class="col-md-12">
<form action="" method="POST" class="form-horizontal">
<div class="nes-balloon from-left">
<legend class="text-center mb-4">
Send a message or link on Social Media
</legend>
</div>
<div class="form-group">
<label
for="name"
class="col-md-3 control-label"
>
Name
</label>
<div class="offset-md-2 col-md-8">
<input
type="text"
id="name"
placeholder="Your Name"
class="nes-input form-control"
/>
</div>
</div>
<div class="form-group">
<label
for="email"
class="col-md-3 control-label"
>
Email
</label>
<div class="offset-md-2 col-md-8">
<input
type="text"
id="email"
placeholder="Your E-mail"
class="nes-input form-control"
/>
</div>
</div>
<div class="form-group">
<label
for="message"
class="col-md-3 control-label"
>
Message
</label>
<div class="offset-md-2 col-md-8">
<textarea
type="text"
id="message"
placeholder="Please enter your message"
class="nes-input form-control"
rows="5"
></textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-12">
<button type="submit" class="nes-btn">
Submit
</button>
</div>
</div>
</form>
</div>
</div>
</div>
<section class="nes-container with-title mb-4 mt-4 is-centered">
<p class="title">Social Media</p>
<div class="icon-list">
<a href="#" target="_blank"
><i class="nes-icon github"></i
></a>
<a href="#" target="_blank"
><i class="nes-icon linkedin"></i
></a>
<a href="#" target="_blank"
><i class="nes-icon gmail"></i
></a>
<a href="#" target="_blank"
><i class="nes-icon facebook"></i
></a>
<a href="#" target="_blank"
><i class="nes-icon whatsapp"></i
></a>
</div>
</section>
<footer class="mt-auto">
<p>
Website made with <i class="nes-icon is-small heart"></i>,
by <a target="_blank" href="#">Nisarg</a>
</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>