-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.php
More file actions
40 lines (39 loc) · 1.24 KB
/
Home.php
File metadata and controls
40 lines (39 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/home.css">
<title>TechVents | Home</title>
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="logo">
<img src="images/icons8-bluestacks-75.png" alt="" class="logo-image">
<img src="images/Techvents-text-removebg-preview.png" alt="" class="logo-text">
</div>
<ul class="nav">
<li><a href="Blog.php"><b> Blogs</b></a></li>
<li><a href="Login.php"><b> Login</b></a></li>
<!-- <li><a href="#specs">Specs</a></li>
<li><a href="#contact">Contact</a></li> -->
</ul>
</div>
</nav>
<!-- Showcase -->
<section class="section-a">
<div class="container">
<div>
<h1>Tech <x>+</x> Events</h1>
<p>
Blogs | Events | News
</p>
<h4>A <b>One-Stop Destination</b> for quality Tech related stuff.</h4>
<a href="Signup.php" class="btn">Get Started</a>
</div>
<img src="images/img1.png" alt="" />
</div>
</section>
</body>
</html>