forked from bosiborileo/portfolio-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
50 lines (43 loc) · 1.47 KB
/
contacts.html
File metadata and controls
50 lines (43 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>My Portfolio</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' href='style.css'>
</head>
<body>
</div>
<div class="content">
<nav class="nav-bar">
<div class="logo" id="logo">
<div class="logo-text">
<a href="contacts.html"><h3>PORTFOLIO</h3></a>
</div>
</div>
<div class="nav-items">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contacts.html">Contacts</a></li>
</ul>
</div>
</nav>
<div class="content-section">
<div class="contacts-content">
<div class="title">
<h2>CONTACTS</h2>
<form action="" class="form">
<input type="text" name="name" class="input" placeholder="enter your name">
<input type="email" name="email" class="input" placeholder="Enter your email">
<textarea name="msg" id="msg" cols="30" rows="10"
placeholder="Enter you Message"></textarea>
<input type="submit" value="SEND" id="send">
</form>
</div>
</div>
</div>
</body>
</html>