-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
46 lines (44 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>USB x INNOVATEHER</title>
<link rel="icon" href="USB.png">
<link rel="stylesheet" href="style.css" />
<link href='https://fonts.googleapis.com/css?family=IBM Plex Mono' rel='stylesheet'>
<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=IBM+Plex+Mono:wght@500&family=Montserrat+Alternates:wght@600&family=Urbanist:wght@200&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="logo">USB x INNOVATEHER</div>
<div class="nav-items">
<a href="index.html">Home</a> <a href="learn.html">Learn</a> <a href="contact.html">Contact</a>
</div>
</nav>
<section class="hero">
<div class="hero-container" style="height:100vh">
<div class="column-left" style="justify-content: center">
<h1>Hi, my name is Purdue Pete!</h1>
<p>
We are learning about Gitting gud.
</p>
<a href="learn.html">
<button>Git Started</button>
</a>
</div>
<div class="column-right" style="justify-content: center">
<img
src="./computer.png"
alt="illustration"
class="hero-image"
width="100px"
height="100px"
/>
</div>
</div>
</section>
</body>
</html>