-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 2.08 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
<!DOCTYPE HTML>
<head>
<!--This is my first attempt at web development from scratch.-->
<title> Guugal dot Com </title>
<link rel="stylesheet" href="styles.css">
</head>
<!-- This is some lame beginner commenting to visually isolate the head from the body in my code-->
<body>
<header>
<div style="flex-shrink: 0;">
<a class="header-link about" href="">About</a>
<a class="header-link" href="">Store</a>
</div>
<div style="flex-shrink: 0;">
<a class="header-link" href="">Gmail</a>
<a class="header-link" href="">Images</a>
<a href="" class="header-icon-link"><img class="header-icon-grid" src="grid.png"></a>
<a href="" class="header-icon-link"><img class="header-icon-profile" src="profPic.png"></a>
</div>
</header>
<!--The main Chunk-->
<div class="main-container">
<img src="googleLogo.png" class="logo">
<div class="searchbar-container">
<div class="search-bar">
<form class=search-form>
<input type="image" src="searchIcon.png" class="submit-button" name="submit">
<input type="text" name="searchQuery" class="search">
</form>
<a class="voice-search" href="" alt="Search Icon"><img class="voice-search" src="mic.png"></a>
</div>
</div>
<div class="button-container">
<button class="search-button dual-button">Google Search</button>
<button class="feeling-lucky dual-button">I'm Feeling Lucky</button>
</div>
</div>
<footer>
<div class="footer-section">
<a class="footer-link" href="">Advertising</a>
<a class="footer-link" href="">Business</a>
<a class="footer-link" href="">How Search Works</a>
</div>
<div class="footer-section">
<a class="footer-link" href="">Privacy</a>
<a class="footer-link" href="">Terms</a>
<a class="footer-link" href="">Settings</a>
</div class=footer-section>
</footer>
</body>