-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (135 loc) · 4.09 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
</head>
<body style="background-color: #1b773e;">
<!-- Header -->
<div class="row" style="background-color: #1a1a2e;">
<div class="text-center" style="color:#33c46a;">
<br>
<br>
<h1>Süper Lig Teknik Direktör Generator</h1>
<br>
<br>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-auto col-sm-auto col-md-1 col-lg-3"></div>
<div class="col col-sm-12 col-md-10 col-lg-6">
<div class="container">
<br>
<br>
<br>
<!-- 2. satır -->
<div class="row">
<div class="col-6">
<div class="dropdown">
<a
class="btn dropdown-toggle btn-lg btn-block"
href="#"
role="button"
id="dropdownMenuLink"
data-bs-toggle="dropdown"
aria-expanded="false"
style="font-weight: bold; color: white; background-color: #1a1a2e;"
>
Kulüp Seç
</a>
<ul
id="clubs"
class="dropdown-menu bg-dark"
aria-labelledby="dropdownMenuLink"
style="color: white;"
>
<li>
<a class="dropdown-item" style="font-weight: bold; color: #b8b8b8;" href="#"
>Rastgele</a
>
</li>
<div class="dropdown-divider"></div>
</ul>
</div>
</div>
<div class="col-auto">
<div class="text-center">
<h2 style="color: white" id="club">~</h2>
</div>
</div>
</div>
<br>
<br>
<br>
<!-- 3. satır -->
<div class="row">
<div class="col-6">
<div class="dropdown">
<a
class="btn dropdown-toggle btn-lg"
href="#"
role="button"
id="dropdownMenuLink"
data-bs-toggle="dropdown"
aria-expanded="false"
style="font-weight: bold; color: white; background-color: #1a1a2e"
>
Teknik Direktör Seç
</a>
<ul
id="managers"
class="dropdown-menu bg-dark"
aria-labelledby="dropdownMenuLink"
>
<li>
<a
class="dropdown-item"
style="font-weight: bold; color:#b8b8b8;"
href="#"
>Rastgele</a
>
</li>
<div class="dropdown-divider"></div>
</ul>
</div>
</div>
<div class="col-auto">
<div class="text-center">
<h2 style="color: white" id="manager">~</h2>
</div>
</div>
</div>
<br>
<br>
<br>
<!--4. satır -->
<div class="row">
<button
type="button"
class="btn btn-lg"
style="font-weight: bolder; color: white; background-color: #134057;"
onclick="generate()"
>
Eşleştir
</button>
</div>
</div>
</div>
<div class="col-auto col-sm-auto col-md-1 col-lg-3"></div>
</div>
<script src="index.js"></script>
<!-- <script src="index.js"></script> -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
</body>
</html>