-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResult.aspx
More file actions
53 lines (48 loc) · 1.71 KB
/
Copy pathResult.aspx
File metadata and controls
53 lines (48 loc) · 1.71 KB
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Result.aspx.cs" Inherits="QUtopiaProject.Result" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>QUTOPIA</title>
<style>
body {
background: #f6f5f7;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Montserrat', sans-serif;
height: 100vh;
margin: -20px 0 50px;
background-position: center;
background-repeat: no-repeat;
background-image: url(https://images.pexels.com/photos/3310691/pexels-photo-3310691.jpeg?auto=compress&cs=tinysrgb&w=1800&h=1800&dpr=1)
}
.s1 {
font-family: 'Montserrat', sans-serif, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
color : black;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<center>
<h3> </h3>
<h3> </h3>
<p> </p>
<h3>QUTOPIA PROJECT</h3>
<div class="s1">
<asp:Label ID="Label1" runat="server" Text="TOTAL SCORE / YOUR SCORE"></asp:Label>
</div>
<asp:Label ID="Label3" runat="server" Text="Label"></asp:Label>
<div>
<br />
<asp:Button ID="Button1" runat="server" BackColor="Black" ForeColor="#FFCC00" Text="Back To Profile" OnClick="Button1_Click" />
</div>
</div>
<br />
</center>
</div>
</form>
</body>
</html>