-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathFPS.aspx
65 lines (55 loc) · 1.88 KB
/
FPS.aspx
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<%@ Page Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeFile="FPS.aspx.cs" Inherits="FPS" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<html>
<head>
<link href="Content/StyleGameSheet.css" rel="stylesheet" />
</head>
<h1>OUR FIRST PERSON SHOOTING GAMES </h1>
<body>
<div class= "gamelistsection">
<ul class= "gameListGrid">
<li>
<div class=" box fpsImage-1" style="background-image:url(lasthope.jpg)">
<a runat="server" href="~/TheLastHope">
<h3> The Last Hope</h3>
<p> 140TK </p>
</a>
</div>
</li>
<li>
<div class=" box fpsImage-2" style="background-image:url(Wolfenstein.jpg)">
<a runat="server" href="~/Wolfenstein">
<h3> Wolfenstein || </h3>
<p> 100TK </p>
</a>
</div>
</li>
<li>
<div class=" box fpsImage-3" style="background-image:url(LineOfSight.jpg)">
<a runat="server" href="~/LineOfSight">
<h3> Line Of Sight</h3>
<p> 210TK </p>
</a>
</div>
</li>
<li>
<div class=" box fpsImage-4" style="background-image:url(CODWAR.jpg)">
<a runat="server" href="~/CODWAR">
<h3> COD Infinty Warfare</h3>
<p> 160TK </p>
</a>
</div>
</li>
<li>
<div class=" box fpsImage-5" style="background-image:url(Deus.jpg)">
<a runat="server" href="~/Deus">
<h3> Deus Ex (Man Kind Divided)</h3>
<p> 200TK </p>
</a>
</div>
</li>
</ul>
</div>
</body>
</html>
</asp:Content>