-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
127 lines (107 loc) · 3.33 KB
/
team.html
File metadata and controls
127 lines (107 loc) · 3.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/43e55fa588.js" crossorigin="anonymous"></script>
<title>Team</title>
<style>
body {
background-color: rgb(27, 27, 27);
overflow: hidden;
background-image: url(JX6A0486.JPG);
background-size: 116rem, 75rem;
background-position: 20px;
background-position: middle;
}
.text {
color: white;
}
.top {
display: flex;
color: white;
background-color: black;
align-items: center;
gap: 10px;
padding-left: 25px;
margin-left: -10px;
margin-top: -10px;
margin-right: -10px;
}
.linkgroups {
background-color: rgb(46, 46, 46);
border-radius: 10px;
margin-left: 300px;
padding-left: 20px;
padding-right: 50px;
gap: 60px;
display: flex;
}
.linkgroups {
background-color: rgb(46, 46, 46);
border-radius: 10px;
margin-left: 500px;
padding-left: 100px;
padding-right: 50px;
gap: 60px;
display: flex;
}
.search-bar {
display: flex;
align-items: center;
width: 300px;
height: 15px;
border-radius: 20px;
padding: 10px;
background-color: #f1f1f1;
margin-left: 50px;
margin-top: 8px;
}
.search-bar input {
border: none;
background-color: transparent;
flex-grow: 1;
}
.search-bar i {
margin-right: 10px;
}
input {
outline: none;
}
.team {
margin-left: 250px;
font-size: 310px;
margin-top:35rem ;
color: rgb(255, 0, 128);
font-family: 'Inconsolata', monospace;
}
</style>
</head>
<body>
<div class="top">
<i class="fa-solid fa-shield-halved fa-bounce fa-2xl" style="color: #ffffff;"></i>
<h1><a href="index.html" style="text-decoration: none; color: #ffffff;">Server Security-Check</a></h1>
<div class="linkgroups">
<a href="server.html" style="text-decoration: none; color: white;">
<p>Server</p>
</a>
<a href="team.html" style="text-decoration: none; color: white;">
<p>Team</p>
</a>
<a href="projektidee.html" style="text-decoration: none; color: #ffffff;">
<p>Projektidee</p>
</a>
<div class="search-bar">
<i class="fa fa-search" style="color: black;"></i>
<input type="text" placeholder="Enter IP address">
</div>
</div>
</div>
<div>
<h1 class="team">Our Team</h1>
</div>
</body>
</html>