-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathRPG.aspx
76 lines (53 loc) · 1.92 KB
/
RPG.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
65
66
67
68
69
70
71
72
73
74
<%@ Page Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeFile="RPG.aspx.cs" Inherits="RPG" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<html>
<head>
<link href="Content/StyleGameSheet.css" rel="stylesheet" />
</head>
<h1> OUR RPG GAMES </h1>
<div class= "gamelistsection">
<ul class= "gameListGrid">
<li>
<div class=" box gameImage-1" style="background-image:url(battle-breakers.jpg)">
<a runat="server" href="~/BattleBreakers">
<h3> Battle Breakers</h3>
<p> 200TK </p>
</a>
</div>
</li>
<li>
<div class=" box gameImage-2" style="background-image:url(blood-brothers.jpg)">
<a runat="server" href="~/BloodBrothers">
<h3> Blood Brothers</h3>
<p> 200TK </p>
</a>
</div>
</li>
<li>
<div class=" box gameImage-3" style="background-image:url(Divinity.jpg)">
<a runat="server" href="~/DivinitySin">
<h3> Divinity Original Sin ||</h3>
<p> 200TK </p>
</a>
</div>
</li>
<li>
<div class=" box gameImage-4" style="background-image:url(DOD.jpg)">
<a runat="server" href="~/DOD">
<h3> Dark Of The Demons</h3>
<p> 650TK </p>
</a>
</div>
</li>
<li>
<div class=" box gameImage-5" style="background-image:url(DAI.jpg)">
<a href="destiny.html">
<h3> Dragon Age Inquisition</h3>
<p> 700TK </p>
</a>
</div>
</li>
</ul>
</div>
</html>
</asp:Content>