-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (81 loc) · 3.84 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<!--Required Meta Tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Title of the Website-->
<title>Kawa Model</title>
<!--Bootstrap Links-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<!-- Below are the links to the fonts used in the website -->
<!-- Font 1 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300&display=swap" rel="stylesheet">
<!-- Font 2 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ysabeau+SC:wght@200;400&display=swap" rel="stylesheet">
<!-- Font 3 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap" rel="stylesheet">
<!--Font 4-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&family=Outfit:wght@300&display=swap" rel="stylesheet">
<!--Font 5-->
<link href="//db.onlinewebfonts.com/c/0252223e8c36008b595f5e379ad5e524?family=Bradley+Hand+ITC" rel="stylesheet" type="text/css"/>
<!-- Link for Favicon Images -->
<link rel="apple-touch-icon" sizes="180x180" href="Favicon_Images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="Favicon_Images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="Favicon_Images/favicon-16x16.png">
<link rel="manifest" href="Favicon_Images/site.webmanifest">
<!-- <link rel="stylesheet" href="src/input.css"> -->
<!-- Style Sheet Link (This is the url that links this file to the style sheet) -->
<link rel="stylesheet" href="index_and_about_style.css">
</head>
<body class="gradient-background">
<!-- <h1 class="text-9xl">Hello World</h1> -->
<!-- Title // This section houses the title animation of the website -->
<div class="container-fluid">
<div class="">
<div>
<div id="main-title">
<img id="gif" src="gif/Cropped_Blue_Create_Your_River_Animation.gif" alt="Create Your River">
</div>
</div>
<!--Logo // This is the Kanji logo for the website -->
<div id="image">
<img class="kanji-logo" src="images/White_Kanji (20230705072022).png" alt="Kanji Image">
</div>
<!-- Buttons -->
<!-- Start Button -->
<div id="start-button-section">
<div id="start-button-div">
<button class="start-button">
<a href="screen-mode.html" class="start-button-text fs-1 fw-bold start-button-style" >Create my River</a>
</button>
</div>
</div>
<!-- About -->
<div id="about-button-section">
<div id="about-div">
<button class="about-button">
<a href="about_2.html" class="about fs-1 fw-bold about-button-style" class="">About</a>
</button>
</div>
</div>
<!-- Kawa Model -->
<div id="kawa-model-button">
<div id="kawa-model-div">
<h6 id="kawa-model">KAWA MODEL</h6>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>
<!-- Obsolete Code -->