-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (45 loc) · 1.69 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
<!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">
<title>Github/landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<h3>GitHub</h3>
<div><input type="text" placeholder="search or type a command"></div>
<ul>
<li>Explore</li>
<li>Feature</li>
<li>Enterprise</li>
<li>Blog</li>
</ul>
<button>Sign in</button>
</nav>
<main>
<div class="col-1">
<h1>Build software <br> better,together</h1>
<p>Powerful collaboration,code review, and code management for open source and private project. Need private repositories?</p>
<a href="#">Upgraded plan starts at $7/mo.</a>
</div>
<div class="col-2">
<form action="">
<input type="text" name="" id="" placeholder="Pick a username">
<input type="email" name="" id="" placeholder="Your email">
<input type="password" name="" id="" placeholder="Create password"><br>
<small>use at least one lower case letter, one numeral and seven characters</small>
<br>
<button>Sign Up For GitHub</button>
<small>By clicking 'sign up for GitHub' you agree to our <a href="#">terms of service</a> and <a href="#">privacy policy.</a>we will send you account related emails occasionally</small>
</form>
</div>
</main>
<footer>
<h2>Why you'll love GitHub</h2>
<p><a href="#">Powerful features</a> to make software development more collaborative.</p>
</footer>
</body>
</html>