-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (25 loc) · 905 Bytes
/
index.php
File metadata and controls
27 lines (25 loc) · 905 Bytes
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
<!--Tekijät: Miia-Maria Mikkola ja Jenni Hautala-->
<!DOCTYPE html>
<!--index.php sisältää päänäkymän ohjelmakoodin.
<link> yhdistää koodin muotoilutiedostoon
Näkymässä on napit, jotka vievät ohjelman jokaiseen näkymään
buttonhandlerin avulla-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</link>
<style></style>
<meta charset="UTF-8">
<title>Solitaire</title>
</head>
<body>
<h1>Solitaire</h1>
<div class="mainScreenButtons">
<form action="ButtonHandler.php" method="get">
<input type="Submit" Name = "Start" VALUE = "Start" id = "start">
<input type="Submit" Name = "HowToPlay" VALUE = "How to Play?">
<input type="Submit" Name = "Settings" VALUE = "Settings">
</form>
</div>
</body>
</html>