-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodelselect.html
More file actions
135 lines (122 loc) · 3.67 KB
/
modelselect.html
File metadata and controls
135 lines (122 loc) · 3.67 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
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
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Model Selection</title>
<style>
body {
font-family: 'Arial', sans-serif;
text-align: center;
background: url('image.jpg') no-repeat center center/cover;
color: #fff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
position: relative;
}
/* Overlay to improve text readability */
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6); /* Dark overlay */
z-index: 1;
}
.box {
background: rgba(20, 20, 20, 0.95);
padding: 40px 50px;
border-radius: 20px;
box-shadow: 0 0 20px rgba(0, 195, 255, 0.2);
max-width: 800px;
width: 90%;
text-align: center;
position: relative;
z-index: 2;
}
h1 {
font-size: 46px;
font-weight: bold;
color: #00ff95;
text-shadow: 2px 2px 10px rgba(0, 195, 255, 0.8);
}
h2 {
font-size: 24px;
color: #f3f2f2;
}
p {
font-size: 16px;
color: #d4d4d4;
margin-bottom: 0px;
}
.container {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 50px;
}
.btn {
padding: 15px 35px;
font-size: 28px;
font-weight: bold;
border: none;
cursor: pointer;
border-radius: 10px;
color: white;
text-transform: uppercase;
transition: 0.3s ease-in-out;
box-shadow: 0 0 10px rgba(0, 195, 255, 0.6);
}
.model1 {
background: #ff9800;
box-shadow: 0 0 15px #ff9800;
}
.model2 {
background: #007bff;
box-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
}
.btn:hover {
transform: scale(1.1);
opacity: 0.9;
box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}
.rollno{
background: rgba(15, 20, 48, 0.95);
padding: 10px 20px 20px 10px;
border-radius: 20px;
box-shadow: 0 0 5px rgba(0, 195, 255, 0.2);
max-width: 200px;
width: 100%;
text-align: center;
margin: 20px auto;
z-index: 3;
}
</style>
</head>
<body>
<div class="box">
<h1>Distributed Machine Learning</h1>
<h2>Distributed Computing PBL</h2>
<div class="rollno">
<p>C044: Amishi Desai </p>
<p>C048: Pratham Vasa </p>
<p>C049: Chahel Gupta</p>
</div>
<div class="container">
<button class="btn model1" onclick="redirectTo('model11.html')">Model 1</button>
<button class="btn model2" onclick="redirectTo('model2.html')">Model 2</button>
</div>
</div>
<script>
function redirectTo(page) {
window.location.href = page;
}
</script>
</body>
</html>