-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (86 loc) · 3.01 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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">
<title>R2D2 | Home</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="landing-div container-fluid">
<header class="nav-header">
<h2>R2D2</h2>
<nav>
<ul class="navlinks">
<li><a href="./index.html" class="link">Home</a></li>
<li><a href="./about.html" class="link1">About</a></li>
<li><a href="./demos.html" class="link3">Contact</a></li>
</ul>
</nav>
<div class="toggleWrapper">
<span class="material-icons-outlined dark">
dark_mode
</span>
<span class="material-icons-outlined light">
wb_sunny
</span>
</div>
</header>
<div class="row">
<div class="col-sm-6">
<div class="title-text">
<h1>
Hello I'm R2D2 <br>
Your own <br>
<span id="text"></span>
</h1>
<p>
A key feature of me is the way I interact with you, making changes to <br> the world through my actions
responding to events in the world. Robots <br> like me perform useful tasks, extend the
capabilities of humans and <br> reduce your risks when operating in hazardous environments.
</p>
</div>
</div>
<div class="col-sm-6">
<div class="img-cont">
<div class="rect-1"></div>
<img src="./asset/r2d2-robot-l.png" class="img-rect-1" >
<img src="./asset/r2d2-robot-r.png" class="img-rect-2">
<div class="rect-2"></div>
</div>
</div>
</div>
</div>
<footer class="footer-sec">
<center><hr></center>
<div class="row">
<div class="col-sm-3 logo-desc">
<div class="logo-img"></div>
<p>
R2D2
</p>
</div>
<div class="col-sm-4 social-desc">
<ul>
<li>
<i class="fab fa-instagram"></i>
</li>
<li>
<i class="fab fa-facebook"></i>
</li>
<li>
<i class="fab fa-twitter"></i>
</li>
</ul>
</div>
</div>
</footer>
</body>
<script src="./js/app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</html>