This commit is contained in:
parent
e8195c43e9
commit
297c5da6e0
80
dist/index.html
vendored
80
dist/index.html
vendored
@ -1,6 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
|
||||||
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
|
||||||
@ -13,42 +14,28 @@
|
|||||||
<meta property="og:title" content="Let me Google that for you" />
|
<meta property="og:title" content="Let me Google that for you" />
|
||||||
|
|
||||||
<!-- Bootstrap -->
|
<!-- Bootstrap -->
|
||||||
<link
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||||
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
|
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
|
||||||
rel="stylesheet"
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
|
||||||
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
|
|
||||||
crossorigin="anonymous"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
|
|
||||||
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
|
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
|
||||||
crossorigin="anonymous"
|
crossorigin="anonymous"></script>
|
||||||
></script>
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"
|
||||||
<script
|
|
||||||
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"
|
|
||||||
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
|
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
|
||||||
crossorigin="anonymous"
|
crossorigin="anonymous"></script>
|
||||||
></script>
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.6.1/font/bootstrap-icons.css" />
|
||||||
<link
|
|
||||||
rel="stylesheet"
|
|
||||||
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.6.1/font/bootstrap-icons.css"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="index.css" />
|
<link rel="stylesheet" href="index.css" />
|
||||||
<script src="index.js"></script>
|
<script src="index.js"></script>
|
||||||
|
|
||||||
<title>Let me Google that for you</title>
|
<title>Let me Google that for you</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="bg-light">
|
<body class="bg-light">
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<nav class="navbar navbar-light bg-light">
|
<nav class="navbar navbar-light bg-light">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div></div>
|
<div></div>
|
||||||
<button
|
<button class="btn bi-brightness-high btn-light" onclick="toggleBrightness()"></button>
|
||||||
class="btn bi-brightness-high btn-light"
|
|
||||||
onclick="toggleBrightness()"
|
|
||||||
></button>
|
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
@ -57,36 +44,22 @@
|
|||||||
<form class="row g-3 text-center mt-5">
|
<form class="row g-3 text-center mt-5">
|
||||||
<!-- Google -->
|
<!-- Google -->
|
||||||
<label class="display-1 form-label fw-normal mb-0" for="input">
|
<label class="display-1 form-label fw-normal mb-0" for="input">
|
||||||
<span class="text-primary">G</span><span class="text-danger">o</span
|
<span class="text-primary">G</span><span class="text-danger">o</span><span class="text-warning">o</span><span
|
||||||
><span class="text-warning">o</span><span class="text-primary">g</span
|
class="text-primary">g</span><span class="text-success">l</span><span class="text-danger">e</span>
|
||||||
><span class="text-success">l</span><span class="text-danger">e</span>
|
|
||||||
</label>
|
</label>
|
||||||
<small class="text-muted mt-0">Let me Google that for you</small>
|
<small class="text-muted mt-0">Let me Google that for you :)</small>
|
||||||
|
|
||||||
<!-- Input -->
|
<!-- Input -->
|
||||||
<div
|
<div class="
|
||||||
class="
|
|
||||||
bg-light
|
bg-light
|
||||||
border border-1 border-light
|
border border-1 border-light
|
||||||
input-group
|
input-group
|
||||||
rounded-pill
|
rounded-pill
|
||||||
shadow-sm
|
shadow-sm
|
||||||
"
|
">
|
||||||
>
|
<label class="bg-light bi-search border-0 input-group-text text-dark" for="input" id="searchicon"></label>
|
||||||
<label
|
<input class="form-control border-0 bg-light text-dark" id="input" maxlength="2048" name="search"
|
||||||
class="bg-light bi-search border-0 input-group-text text-dark"
|
placeholder="Search" required type="text" />
|
||||||
for="input"
|
|
||||||
id="searchicon"
|
|
||||||
></label>
|
|
||||||
<input
|
|
||||||
class="form-control border-0 bg-light text-dark"
|
|
||||||
id="input"
|
|
||||||
maxlength="2048"
|
|
||||||
name="search"
|
|
||||||
placeholder="Search"
|
|
||||||
required
|
|
||||||
type="text"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Actions -->
|
<!-- Actions -->
|
||||||
@ -94,14 +67,8 @@
|
|||||||
<button class="btn btn-light" id="search" type="submit">
|
<button class="btn btn-light" id="search" type="submit">
|
||||||
Google Search
|
Google Search
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button class="btn btn-light" id="lucky" name="lucky" title="Open the first search result" type="submit"
|
||||||
class="btn btn-light"
|
value="true">
|
||||||
id="lucky"
|
|
||||||
name="lucky"
|
|
||||||
title="Open the first search result"
|
|
||||||
type="submit"
|
|
||||||
value="true"
|
|
||||||
>
|
|
||||||
I'm feeling lucky
|
I'm feeling lucky
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
@ -113,5 +80,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user