forked from web-arena-x/visualwebarena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (111 loc) · 4.02 KB
/
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: Arial, sans-serif;
background-color: white;
margin: 0;
padding: 0;
line-height: 1.6;
}
#container {
width: 90%;
margin: auto;
overflow: hidden;
}
#header {
background-color: #f4f7f9;
color: #232f34;
padding-top: 30px;
min-height: 70px;
border-bottom: #b1c1c6 3px solid;
font-family: 'Roboto', sans-serif;
}
#header h1 {
padding: 5px;
margin: 0;
text-align: center;
font-weight: 500;
}
.card {
border: 1px solid #ddd;
border-radius: 5px;
width: 200px; /* Changed width */
height: 200px; /* Added height */
text-align: center;
margin: 10px;
padding: 10px;
box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
display: inline-block;
overflow: auto; /* To handle content that might overflow */
}
.card img {
width: 35%;
}
.card h2 {
font-size: 15px;
}
.card p {
font-size: 14px;
}
.card a {
color: #35424a;
text-decoration: none;
}
</style>
</head>
<body>
<div id="container">
<br/>
<div id="header">
<h1>Welcome to VisualWebArena</h1>
</div>
<div class="card" role="region" aria-label="Classifieds">
<img src="{{ url_for('static', filename='figures/classifieds.png') }}" alt="Logo for Classifieds">
<a href="<your-server-hostname>:9980">
<h2 id="appName">Classifieds</h2>
</a>
<p id="appDescription">A classifieds website for people to sell and buy things</p>
</div>
<div class="card" role="region" aria-label="OneStopShop">
<img src="{{ url_for('static', filename='figures/onestopshop.png') }}" alt="Logo for OneStopShop">
<a href="<your-server-hostname>:7770">
<h2 id="appName">OneStopShop</h2>
</a>
<p id="appDescription">An online shopping site</p>
</div>
<div class="card" role="region" aria-label="Reddit">
<img src="{{ url_for('static', filename='figures/reddit.png') }}" alt="Logo for Reddit">
<a href="<your-server-hostname>:9999/forums/all">
<h2 id="appName">Reddit</h2>
</a>
<p id="appDescription">A social news aggregation and discussion website</p>
</div>
<div class="card" role="region" aria-label="Calculator">
<img src="{{ url_for('static', filename='figures/calculator.png') }}" alt="Logo for Calculator">
<a href="calculator.html">
<h2 id="appName">Calculator</h2>
</a>
<p id="appDescription">A calculator</p>
</div>
<div class="card" role="region" aria-label="Scratchpad">
<img src="{{ url_for('static', filename='figures/scratchpad.png') }}" alt="Logo for Scratchpad">
<a href="scratchpad.html">
<h2 id="appName">Scratchpad</h2>
</a>
<p id="appDescription">A scratchpad for taking notes</p>
</div>
<div class="card" role="region" aria-label="Wikipedia">
<img src="{{ url_for('static', filename='figures/wikipedia.png') }}" alt="Logo for Wikipedia">
<a href="<your-server-hostname>:8888/wikipedia_en_all_maxi_2022-05/A/User:The_other_Kiwix_guy/Landing">
<h2 id="appName">Wikipedia</h2>
</a>
<p id="appDescription">An online encyclopedia</p>
</div>
<!-- Repeat the above card structure for each app -->
</div>
</body>
</html>