-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect.html
More file actions
71 lines (55 loc) · 2.58 KB
/
select.html
File metadata and controls
71 lines (55 loc) · 2.58 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
<!DOCTYPE html>
<html>
<head>
<title>Main page</title>
<!--Compiled and minified CSS-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!--jQuery CDN-->
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<!--Compiled and minified JavaScript-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel = "stylesheet" href = "css_R/style_R.css">
</head>
<body class = "row">
<div class = "container">
<header class = "row" >
<div class = "logo col-lg-12 col-md-8 col-sm-6 col-xs-12 ">
<h1 class ="name"><img src = "logo.jpg", alt="logo", width = "200" class = "image-responsive">Ridgeway Country Club</h1>
</div>
</header>
<nav class="row navbar navbar-default">
<div class = "navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target="#menu">Menu
</button>
</div>
<div class = "collapse navbar-collapse" id="menu">
<ul class="nav navbar-nav">
<li><a href = "index.html">Home</a></li>
<li><a href = "application.html">Application</a></li>
<li><a href = "waitlist.html">Waitlist</a></li>
<li><a href = "invoice.html" class = "dropdown-toggle" data-toggle="dropdown">Invoice<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href = "invoice_2.html">Invoice List</a></li>
</ul>
</li>
<li><a href = "team.html" class = "dropdown-toggle" data-toggle="dropdown">Team<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href = "team_rgr.html">Register</a></li>
<li><a href = "captain.html">Captains</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<main>
<h2>Select Team Captain! </h2>
<ul>
<li>Captain Information</li>
<li>First Name: </li>
<li>Last Name: </li>
<li>Activity: </li>
</ul>
</main>
<footer>Ridgeway Country Club | Phone: 800-555-1234 | 444 Four Circles Dr, Daytona, FL 32114</footer>
</div></body>
</html>