-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
125 lines (105 loc) · 4.73 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Portfolio-Mario</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" >
<link href="https://unpkg.com/nes.css@latest/css/nes.min.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="text-center">
<div class="container p-3 d-flex flex-column h-100 mx-auto">
<header class="nav-spacer">
<h3 class="masthead-brand">
<i class="nes-icon coin"></i>Mario Mario
</h3>
<nav class="nav nav-masthead justify-content-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 mb-4">
<p class="title">Contact Me</p>
<div class="row">
<div class="col-md-12">
<form action="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="form-control nes-input">
</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 Email..." class="form-control nes-input">
</div>
</div>
<div class="form-group">
<label for="message" class="col-md-3 control-label">
Your Message
</label>
<div class="offset-md-2 col-md-8">
<textarea rows="5" type="text" id="message" placeholder="Please enter your message..." class="form-control nes-input">
</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-auto">
<p class="title">Social Media</p>
<div class="icon-list">
<!-- twitter -->
<i class="nes-icon twitter is-large"></i>
<!-- facebook -->
<i class="nes-icon facebook is-large"></i>
<!-- instagram -->
<i class="nes-icon instagram is-large"></i>
<!-- github -->
<i class="nes-icon github is-large"></i>
<!-- google -->
<i class="nes-icon google is-large"></i>
<!-- gmail -->
<i class="nes-icon gmail is-large"></i>
<!-- medium -->
<i class="nes-icon medium is-large"></i>
<!-- linkedin -->
<i class="nes-icon linkedin is-large"></i>
<!-- twitch -->
<i class="nes-icon twitch is-large"></i>
<!-- youtube -->
<i class="nes-icon youtube is-large"></i>
<!-- reddit -->
<i class="nes-icon reddit is-large"></i>
<!-- whatsapp -->
<i class="nes-icon whatsapp is-large"></i>
</div>
</section>
<footer class="mt-auto ">
<p>Website made with <i class="nes-icon is-small heart"></i>, by
<a target="_blank" href="https://twitter.com/katsugkd">@katsugkd</a>
</p>
</footer>
</div>
</body>
</html>