-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
121 lines (99 loc) · 4.11 KB
/
contact.html
File metadata and controls
121 lines (99 loc) · 4.11 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Maverick's blog</title>
<link rel="stylesheet" href="CSS/masterContact.css">
<link rel="shortcut icon" href="Logos/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500|Fjalla+One" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fjalla+One|Mukta+Malar|Poppins|PT+Sans+Narrow"> -->
</head>
<body>
<nav>
<div class="navigation-bar">
<div class="name">
<a href="main.html" id="toMain">MAVERICK</a>
</div>
<div class="dropdown">
<button class="dropbtn">PHOTOGRAPHY</button>
<div class="dropdown-content">
<a href="travel.html" class="trav">TRAVEL</a>
<a href="streets.html">STREETS</a>
</div>
</div>
<div class="dropdownSport">
<button class="dropbtnSport">SPORT</button>
<div class="dropdownSport-content">
<a href="running.html">RUNNING</a>
<a href="alpinism.html">ALPINISM</a>
</div>
</div>
<div class="aboutme">
<a href="about.html">ABOUT</a>
</div>
<div class="contactme">
<a href="contact.html">CONTACT</a>
</div>
</div>
</nav>
<article class="info">
<div class="outer-form">
<form class="mainform" method="post" autocomplete="off" >
<fieldset>
<legend>Contact information</legend>
<br>
<div class="outerNameinput">
<div class="outerFirstname">
<div class="firstname">
First name:
</div>
<div class="inputFirstname">
<input type="text" name="firstname" placeholder="John" required="" >
</div>
</div>
<div class="outerLastname">
<div class="lastname">
Last name:
</div>
<div class="inputLastname">
<input type="text" name="lastname" placeholder="Doe" >
</div>
</div>
</div>
Your email:<br>
<input type="email" name="email" placeholder="example@maverick.com"><br><br>
Subject:<br>
<input type="text" name="sub" placeholder="" required=""><br><br>
Your Message:<br>
<textarea name="message" rows="7" class="textarea"></textarea><br><br>
<input type="submit" name="subbut" value="SUBMIT">
</fieldset>
</form>
</div>
<div class="outer-text">
<div class="infotext">
<div class="inftxt">
If you have got a query or would like a personal quote fil out the <br> form
below and I will get to you as soob as possible.<br><br>
Or you can contact me directly in <a href="mailto:maverickmsk1@gmail.com">
maverickmsk1@gmail.com</a> <br><br>
If you think that you must contact me instanyly you can call my <br> manager,
John, his number is <a href="callto:+70165553684">+7-916-555-36-84 </a><br><br>
Also you can contact me in my socials which are listed down on <br>the page</div>
</div>
</div>
</article>
<footer class="social">
<div class="end" >
<a href="https://www.instagram.com/mavericks_brainchild/" target="_blank">
<img src="Logos/instagram-black.svg" alt="IG-logo" class="logo" ></a>
<a href="https://www.facebook.com/profile.php?id=100014060569202" target="_blank">
<img src="Logos/facebook-black.svg" alt="FB-logo" class="logo"></a>
<a href="https://www.youtube.com/channel/UC-W0MyIZcPgs-kB-8Sk4QNQ?view_as=subscriber" target="_blank">
<img src="Logos/youtube-black.svg" alt="YT-logo" class="logo"></a>
<a href="https://github.com/mvrck96" target="_blank">
<img src="Logos/github-black.svg" alt="GH-logo" class="logo"></a>
</div>
</footer>
</body>
</html>