-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (29 loc) · 971 Bytes
/
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
<!--- File: index.php
* Project: Project 2
* File Created: 3/20/21
* Author: Johnathan Nguyen
-->
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Rental Car</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body class="indexbg">
<h1 id="welcome">Rent a Car</h1>
<div id="buttons">
<a href="registration/signup.php" class="function">Sign Up</a>
<a href="registration/login.php" class="function">Log In</a>
</div>
<div id="signout">
<a href="registration/logout.php">
<img src="images/logout.png" class="signout" alt="signout">
</a>
</div>
<div id="w3c">
<a href="https://validator.w3.org/#validate_by_input"><img src="images/xhtml.png" alt="xhtml val"></a>
<a href="https://jigsaw.w3.org/css-validator/#validate_by_input"><img src="images/css.png" alt="css val"></a>
</div>
</body>
</html>