Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions Project_0/advanced.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!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="styles.css" />
<title>Document</title>
</head>
<body>
<div class="google-search-links">
<a href="index.html">Search</a>
<a href="images.html">Images</a>
</div>
<div class="google-search">
<form action="https://www.google.com/search" method="get">
<h1>
<span class="blue">A</span><span class="red">d</span
><span class="orange">v</span><span class="blue">a</span
><span class="green">n</span><span class="red">c</span
><span class="blue">e</span>
</h1>
<div>
<input type="text" placeholder="all these words:" name="as_q"/>
</div>
<div>
<input type="text" placeholder="this exact word or phrase:" name="as_epq" />
</div>
<div>
<input type="text" placeholder="any of these words:" name="as_oq" />
</div>
<div>
<input type="text" placeholder="none of these words:" name="as_eq" />
</div>
<div class="search-buttons">
<input type="submit" id="advance-button" class="button" value="Advance Search" name="btnA">
</div>
</form>
</div>
</body>
</html>
29 changes: 29 additions & 0 deletions Project_0/images.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!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="styles.css">
<title>Document</title>
</head>
<body>
<div class="google-search-links">
<a href="index.html">Search</a>
<a href="advanced.html">Advanced Search</a>
</div>
<div class="google-search">

<form action="https://www.google.com/images" method="get">
<h1><span class="blue">I</span><span class="red">m</span><span class="orange">a</span><span class="blue">g</span><span class="green">e</span><span class="red">s</span></h1>

<div>
<input type="text" placeholder="Search" name="q" />
</div>
<div class="search-buttons">
<input type="submit" name="btnK" value="Search Images" class="button">
</div>
</form>
</div>
</body>
</html>
39 changes: 39 additions & 0 deletions Project_0/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!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="styles.css" />
<title>Document</title>
</head>
<body>
<div class="google-search-links">
<a href="images.html">Images</a>
<a href="advanced.html">Advanced Search</a>
</div>
<div class="google-search">
<form action="https://www.google.com/search" method="get">
<h1>
<span class="blue">S</span><span class="red">e</span
><span class="orange">a</span><span class="blue">r</span
><span class="green">c</span><span class="red">h</span>
</h1>

<div>
<input type="text" placeholder="Search" name="q" />
</div>
<div class="search-buttons">
<input type="submit" style="margin-right: 10px" value="Google Search" class="button"/>
<input
name="btnI"
type="submit"
style="margin-left: 10px"
value="I am Feeling Lucky"
class="button"
/>
</div>
</form>
</div>
</body>
</html>
87 changes: 87 additions & 0 deletions Project_0/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
.google-search-links {
text-align: right;
margin: 15px;
}

a {
text-decoration: none;
margin: 5px;
font-size: 15px;
color: rgba(0,0,0,.87);
}

a:hover {
border-bottom: 2px solid;
}

.google-search {
display: flex;
justify-content: center;
}

form {
position: absolute;
top: 20%;
display: block;
}

form > div {
margin-bottom: 20px;
}

h1 {
text-align: center;
font-size: 55px;
}

.blue {
color: blue;
}

.red {
color: red;
}

.orange {
color: orange;
}

.green {
color:green;
}

.search-buttons {
display: flex;
justify-content: center;
}

input {
width: 60vh;
padding: 5px;
border-radius: 6px;
border: #cccccc 2px solid;
}

input:focus {
outline: none !important;
box-shadow: #cccccc 0 0 14px ;
border: transparent 2px solid;
}

.button {
background-color: #f8f9fa;
border: #f8f9fa 2px solid;
padding: 5px 18px 5px 18px;
border-radius: 6px;
cursor: pointer;
width: 35%;
}

.button:hover {
border: #cccccc 2px solid;
}

#advance-button {
background-color: blue;
color: white;
}
41 changes: 41 additions & 0 deletions Project_1/advanced.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!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="styles.css" />
<title>Document</title>
</head>
<body>
<div class="google-search-links">
<a href="index.html">Search</a>
<a href="images.html">Images</a>
</div>
<div class="google-search">
<form action="https://www.google.com/search" method="get">
<h1>
<span class="blue">A</span><span class="red">d</span
><span class="orange">v</span><span class="blue">a</span
><span class="green">n</span><span class="red">c</span
><span class="blue">e</span>
</h1>
<div>
<input type="text" placeholder="all these words:" name="as_q"/>
</div>
<div>
<input type="text" placeholder="this exact word or phrase:" name="as_epq" />
</div>
<div>
<input type="text" placeholder="any of these words:" name="as_oq" />
</div>
<div>
<input type="text" placeholder="none of these words:" name="as_eq" />
</div>
<div class="search-buttons">
<input type="submit" id="advance-button" class="button" value="Advance Search" name="btnA">
</div>
</form>
</div>
</body>
</html>
29 changes: 29 additions & 0 deletions Project_1/images.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!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="styles.css">
<title>Document</title>
</head>
<body>
<div class="google-search-links">
<a href="index.html">Search</a>
<a href="advanced.html">Advanced Search</a>
</div>
<div class="google-search">

<form action="https://www.google.com/images" method="get">
<h1><span class="blue">I</span><span class="red">m</span><span class="orange">a</span><span class="blue">g</span><span class="green">e</span><span class="red">s</span></h1>

<div>
<input type="text" placeholder="Search" name="q" />
</div>
<div class="search-buttons">
<input type="submit" name="btnK" value="Search Images" class="button">
</div>
</form>
</div>
</body>
</html>
39 changes: 39 additions & 0 deletions Project_1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!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="styles.css" />
<title>Document</title>
</head>
<body>
<div class="google-search-links">
<a href="images.html">Images</a>
<a href="advanced.html">Advanced Search</a>
</div>
<div class="google-search">
<form action="https://www.google.com/search" method="get">
<h1>
<span class="blue">S</span><span class="red">e</span
><span class="orange">a</span><span class="blue">r</span
><span class="green">c</span><span class="red">h</span>
</h1>

<div>
<input type="text" placeholder="Search" name="q" />
</div>
<div class="search-buttons">
<input type="submit" style="margin-right: 10px" value="Google Search" class="button"/>
<input
name="btnI"
type="submit"
style="margin-left: 10px"
value="I am Feeling Lucky"
class="button"
/>
</div>
</form>
</div>
</body>
</html>
Loading