-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1020 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
<!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>Project Manager</title>
</head>
<body style="background-color:powderblue;">
<div class="Top_section">
<p style="font-size:300%; text-align:center;">Welcome, <b> Name </b>!</p><br><br>
</div>
<div class="main_section">
<p style="font-size:200%;text-align:center;">Create a New Project</p>
<div style="text-align:center">
<a href="create.html">
<img src="images/create.png" alt="Create Image" width="100" height="100">
</a>
</div>
<p style="font-size:200%;text-align:center;">Choose an existing Project</p>
<div style="text-align:center">
<a href="exist_projects.html">
<img src="images/existing.png" alt="Existing Image" width="120" height="100">
</a>
</div>
</div>
</body>
</html>