-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.html
31 lines (29 loc) · 966 Bytes
/
main.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
<!DOCTYPE html>
<! Designed and Developed by Avinash Chhetri©>
<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" />
<link rel="icon" type="image/png" href="resources/favicon.png" />
<link rel="stylesheet" href="css/style.css" />
<title>ArtVue</title>
</head>
<body>
<div class="centered-container">
<div class="top">
<h1>Welcome to ArtVue</h1>
<p>Your Online Art Auction Platform</p>
</div>
<a class="get-started-btn" href="php/home.php">
Get Started
<div class="circle-images">
<img src="resources/pic1.png" alt="Pic 1" />
<img src="resources/pic2.png" alt="Pic 2" />
<img src="resources/pic3.png" alt="Pic 3" />
<img src="resources/pic4.png" alt="Pic 4" />
</div>
</a>
</div>
</body>
</html>