forked from OlibhiaGhosh/Road_Runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetstarted.html
53 lines (53 loc) · 2.81 KB
/
getstarted.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roadrunner</title>
<link rel="stylesheet" href="getstarted.css" type="text/css">
</head>
<body>
<header>
<button class="back" onclick="location.href='index.html'">
↩Previous
</button>
</header>
<main>
<h1 class="question">
Specify your road before navigating toward the destination
</h1>
<button class="science" >
<div class="science_logo" onclick="location.href='./Science/science_index.html'">
<img src="./images/science.jpeg" alt="Science_logo" width="229" height="152" align="left">
</div>
<div class="science_text">
<p class="science_text">
Science is the pursuit of knowledge and understanding through systematic inquiry and observation. It empowers us to unravel the mysteries of the universe, from the smallest particles to the vastness of space. Embrace the wonders of science, for it is the key to unlocking innovation, solving challenges, and shaping the future
</p>
</div>
</button>
<br>
<button class="commerce" onclick="location.href">
<div class="commerce_logo">
<img src="./images/Commerce.jpeg" alt="Commmerce_logo" width="229" height="152" align="right">
</div>
<div class="science_text">
<p class="commerce_text">
Commerce is the dynamic realm where business acumen meets economic principles. Studying commerce opens doors to a world of financial intricacies, strategic decision-making, and the art of thriving in the marketplace. It empowers students to navigate the complexities of global trade and entrepreneurship, fostering skills that drive success in the business landscape
</p>
</div>
</button>
<br>
<button class="humanities">
<div class="humanities_logo">
<img src="./images/humanities.jpeg" alt="Humanities_logo" width="229" height="152" align="left">
</div>
<div class="humanities_text">
<p class="humanities_text">
Humanities is the exploration of what makes us human—our history, cultures, philosophies, and expressions of creativity. It is a journey into the richness of human experience, fostering empathy and critical thinking. Studying humanities not only enlightens the mind but also cultivates a deeper understanding of the world, making it a transformative and enriching academic pursuit.
</p>
</div>
</button>
</main>
</body>
</html>