-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathme.html
More file actions
31 lines (30 loc) · 1.6 KB
/
me.html
File metadata and controls
31 lines (30 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="main.css">
<title>Coffee world limited</title>
</head>
<body> <div class="container pt-5 ">
<div class="topnav">
<a href="index.html">HOME</a>
<a href="/#col">Address</a>
<a href="#about" style="background-color: blue;">Send a note</a>
</div>
<h1>INQUIRY FORM</h1>
<form action="index.html" style="padding-top: 40px; background-image: url(image.jpg); background-repeat: no-repeat; background-size: cover; object-fit: cover;">
<p><input type="text" name="Name" value="Name" onblur="this.value=!this.value?'Name':this.value;" onfocus="this.select()" onclick="this.value='';"></p>
<p> <input type="text" name="Email" value="Email" onblur="this.value=!this.value?'Email':this.value;" onfocus="this.select()" onclick="this.value='';"></p>
<p><input type="text" name="Subject" value="Subject" onblur="this.value=!this.value?'Subject':this.value;" onfocus="this.select()" onclick="this.value='';"></p>
<p></p> <textarea name="meassage" cols="50" rows="7">Share your thoughts</textarea></p>
<p></p> <input type="submit" value="Send" id="submit"></p>
</form>
<div class="footer" style="padding-top: 30px;">
© Coffee world ltd. All rights reserved
</div>
</div>
<script src="js/bootstrap.bundle.js"></script>
</body>
</html>