-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle.html
99 lines (84 loc) · 5.43 KB
/
google.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
<!DOCTYPE html>
<html lang ="en">
<head>
<meta name="author" content="Ausbeth Aguguo">
<meta name="description" content="Software Engineer Portfolio">
<meta name="keywords" content="Portfolio, Software Engineer">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<title>Google's Website</title>
<link rel="icon" type="image/x-icon" href="images/layers.png">
<!-- CSS FILES -->
<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=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-icons.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<section class="preloader">
<div class="spinner">
<span class="spinner-rotate"></span>
</div>
</section>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a href="index.html" class="navbar-brand mx-auto mx-lg-0">Portfolio</a>
<div class="d-flex align-items-center d-lg-none">
<ul class="social-icon">
<li class="social-icon-item"><a href="https://discordapp.com/users/1079761956044550144" target="_blank" class="social-icon-link bi-discord"></a></li>
<li class="social-icon-item"><a href="https://instagram.com/aus_bee?igshid=ZDdkNTZiNTM=" target="_blank" class="social-icon-link bi-instagram"></a></li>
<li class="social-icon-item"><a href="https://github.com/Ausbeth" target="_blank" class="social-icon-link bi-github"></a></li>
</ul>
</div>
<div class="collapse navbar-collapse" id="navbarNav">
<div class="d-lg-flex align-items-center d-none ms-auto">
<ul class="social-icon">
<li class="social-icon-item"><a href="https://discordapp.com/users/1079761956044550144" target="_blank" class="social-icon-link bi-discord"></a></li>
<li class="social-icon-item"><a href="https://instagram.com/aus_bee?igshid=ZDdkNTZiNTM=" target="_blank" class="social-icon-link bi-instagram"></a></li>
<li class="social-icon-item"><a href="https://github.com/Ausbeth" target="_blank" class="social-icon-link bi-github"></a></li>
</ul>
</div>
</div>
</div>
</nav>
<main>
<section class="hero d-flex justify-content-center align-items-center" id="section_1">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#535da1" fill-opacity="1" d="M0,160L24,160C48,160,96,160,144,138.7C192,117,240,75,288,64C336,53,384,75,432,106.7C480,139,528,181,576,208C624,235,672,245,720,240C768,235,816,213,864,186.7C912,160,960,128,1008,133.3C1056,139,1104,181,1152,202.7C1200,224,1248,224,1296,197.3C1344,171,1392,117,1416,90.7L1440,64L1440,0L1416,0C1392,0,1344,0,1296,0C1248,0,1200,0,1152,0C1104,0,1056,0,1008,0C960,0,912,0,864,0C816,0,768,0,720,0C672,0,624,0,576,0C528,0,480,0,432,0C384,0,336,0,288,0C240,0,192,0,144,0C96,0,48,0,24,0L0,0Z"></path></svg>
</section>
<section>
<div class="container">
<h2><span class="first-five">Google's Website</span> With CS50</h2>
<iframe src="https://www.youtube.com/embed/qg9qL9H_40g" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<p align="justify">A project done in <b>CS50's Web Development with Python and JavaScript</b> where I replicated the functionalities of Google Search using <b>HTML</b> and <b>SASS</b></p>
<p align="justify">If you want to find out more information on this website or its source code, you can check it out <a href="https://github.com/Ausbeth/search" target="_blank"> <i>HERE</i> </a></p>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-lg-12 col-12">
<div class="copyright-text-wrap">
<p class="mb-0">
<span class="copyright-text">Ausbeth Aguguo © 2023</span>
Design:
<a rel="sponsored" href="https://templatemo.com" target="_blank">TemplateMo</a>
</p>
</div>
</div>
</div>
</div>
</footer>
<!-- JAVASCRIPT FILES -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/click-scroll.js"></script>
<script src="js/custom.js"></script>
</body>
</html>