-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
77 lines (74 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</head>
<body style="background-color:#fafaff">
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="index.html" style="font-family:cursive">
<img src="img/logo.png" alt="logo" style="width:40px;">
Wandoof
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navbarNavDropdown" class="navbar-collapse collapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="recvid.html">Recipe Video</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item">
<form class="form-inline">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" name="search">
<div class="input-group-btn">
<button class="btn btn-info" type="submit"><img src="img/search1.png" style="width:20px;height:20px;"></button>
</div>
</div>
</form>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="profile.php">Profile</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.php">Signout</a>
</li>
</ul>
</div>
</nav>
<div class="card" style="width:500px;padding:10px">
<div class="card-body">
<img class="card-img-top" src="img/logo.png" style="background-color:#262626;border-radius:5px">
<hr>
<center><h4 class="card-title" style="text-decoration:underline;font-family:cursive">Wandoof</h4>
<address>
<div class="copy-rights" style="font-size:17px;font-style:italic">
Copyright(c) website name.<br>
Designed by:<div>SHASHANK VERMA</div> Email: <a href="https://www.facebook.com/vshashank23"> FIND ON FACEBOOK</a>
</div>
</address>
</center>
</div>
</div>
<br>
<br>
<footer style="background-color:#262626;color:white;height:50px;text-align:center;">
<p>Copyright(c) website name.
Designed by:SHASHANK VERMA</p>
</footer>
</body>
</html>