-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
67 lines (66 loc) · 2.5 KB
/
Copy pathbase.html
File metadata and controls
67 lines (66 loc) · 2.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./base.css">
<title>ProjectStack</title>
</head>
<body>
<div class="header">
<div class="inner_header">
<div class="logo_container">
<a href="base.html">
<img src="images/Logo.svg" alt="ProjectStack">
</a>
</div>
<ul class="navigation">
<a href="dashboard.php"><li>Projects</li></a>
<a href="login.html"><li>Login</li></a>
<a href="signup.html"><li>SignUp</li></a>
</ul>
</div>
</div>
<div class="home">
<div class="tagline">
<div><h1>The Place for All Your <br> I.T. Projects</h1></div>
<div><a href="signup.html"><button class="signup">SignUp</button></a></div>
<div><h2>To Get Access and Contribute Projects</h2></div>
<div><h2>Login/Signup to upload and download <br> projects!</h2></div>
</div>
<div class="years_container">
<div class="years">
<button class="year_button" onclick="location.href='fe.php'">First Year</button>
<button class="year_button" onclick="location.href='se.php'">Second Year</button>
<button class="year_button" onclick="location.href='te.php'">Third Year</button>
</div>
</div>
<div class="activity_container">
<div class="view"><img src="images/view.svg" alt=""><a class="viewlink" href="dashboard.php">View</a></div>
<div class="upload"><a href=""></a><img src="images/upload.svg" alt=""><a class="viewlink" href="dashboard.php">Upload</a></div>
</div>
<img class="main_svg"src="images/home.svg" alt="">
</div>
<footer class="footer">
<div class="footer_logo">
<img src="images/Logo.svg">
</div>
<div>
<h3>Read more about<br>our mission</h3>
<a href="about.html"><h4>About Us</h4></a>
</div>
<div>
<h3>Legal</h3>
<h4>T&C</h4>
<h4>Policies</h4>
</div>
<div class="social_links">
<h3>Social</h3>
<h4>Twitter</h4>
<h4>Instagram</h4>
<h4>Facebook</h4>
</div>
</footer>
</body>
</html>