-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.html
69 lines (60 loc) · 3.4 KB
/
doc.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>herHealth* - Find a Doctor</title>
<link rel="icon" href="static/icon.png" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source Sans Pro">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body style="background-color: white">
<!-- from https://www.w3schools.com/howto/howto_css_team.asp -->
<nav class="navbar navbar-expand-md navbar-custom navbar-light sticky-top" style="background-color: #FAEEE7">
<a class="navbar-brand" href="home.html"><img src="static/logo.png" width="275"></a>
<p class="navbar-text" style="color: #FFC6C7;">Better knowledge. Better health.</p>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNav">
<ul class="navbar-nav ml-auto" style="text-align: center; color: #594A4E">
<li class="nav-item">
<a class="nav-link" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="doc.html">Find a Doc</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item search-nav">
<form action="/action_page.php">
<input type="text" placeholder="Search.." name="search"
style="border: 3px solid #FFC6C7; border-radius: 10px;">
<button type="submit"
style="border: 3px solid #FFC6C7; border-radius: 10px; background-color: white">
<i class="fa fa-search"
style="border: 0px solid #FFC6C7; color: #FFC6C7; border-radius: 10px; background-color: white"></i>
</button>
</form>
</li>
</ul>
</div>
</div>
</nav>
</body>
</html>