-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (67 loc) · 3.51 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="bcss/bootstrap.min.css">
<link rel="shortcut icon" type="image/jpg" href="/Pictures/book.png"/>
<title>Robotics 102</title>
</head>
<body>
<nav class ="navbar navbar-expand-md navbar-dark fixed-top">
<a href="/index.html" class="text-white text-center lead"><p class = 'h3 font-weight-light'>Robotics 102</p></a>
<button class="navbar-toggler" data-toggle = "collapse" data-target="#menu">
<span class= "navbar-toggler-icon"></span>
</button>
<div class="text-white collapse navbar-collapse" id="menu">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-3">
<a href="/p2.html" class="nav-link h4 font-weight-light">Project 2</a>
</li>
<li class="nav-item mx-3">
<a href="/p3.html" class="nav-link h4 font-weight-light">Project 3 Special</a>
</li>
<li class="nav-item mx-3">
<a href="/p3d.html" class="nav-link h4 font-weight-light">Project 3</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid fp d-flex justify-content-center">
<div class="align-self-center text-center">
<div class="display-3 text-center text-white">Robotics 102</div>
<div class="text-center py-3 h5 font-weight-light text-white">by Isaac Madhavaram and Jose David</div>
<div class="row mt-5">
<div class="col-md-4">
<button class="btn btn-primary "><a href="/p2.html" class = 'text-white'>Project 2</a></button>
</div>
<div class="col-md-4">
<button class="btn btn-secondary"><a href="/p3.html" class = 'text-white'><i>Project 3 S</i></button>
</div>
<div class="col-md-4">
<button class="btn btn-warning"><a href="/p3d.html" class = 'text-white'>Project 3</a></button>
</div>
</div>
</div>
</div>
<div class="container-fluid sp">
<div class="container pt-5">
<div class="row">
<div class="col-md-6 align-self-center justify-content-center">
<div class="row mb-4 h4 font-weight-light text-center text-dark">
Hello! This is Robotics 102 webpage for Isaac Madhavaram and Jose David
</div>
<div class="row pl-5">
<img src="/Pictures/cool.jpg" width = 80% alt="">
</div>
</div>
<div class="col-md-6 lead text-dark">
This is currently just the landing page of this website. To view project 2, and look at the work we were able to complete, click the Project 2 website. Project 3 is now up and running, and we have something special for it now. In addition to the tradition webpage with videos and discussions, there is now an interactive "game" that showcases our robot going around the map. Click the "Project 3 S" button above or click the special link in the taskbar. To exit out of the page, click the back buttton in your taskbar.
</div>
</div>
</div>
</div>
</body>
</html>