-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojektidee.html
More file actions
134 lines (111 loc) · 3.38 KB
/
projektidee.html
File metadata and controls
134 lines (111 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/43e55fa588.js" crossorigin="anonymous"></script>
<title>Project idea</title>
<style>
body {
background-color: rgb(27, 27, 27);
overflow-x: hidden;
}
.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;
}
.background1 {
background-size: cover;
background-position: middle;
height: 50vh;
/* Adjust this value to change the height of the image */
}
.background2 {
background-size: cover;
background-position: middle;
height: 50vh;
/* Adjust this value to change the height of the image */
}
</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>
<img src="Innovation template.png" alt="Innovationsbild" style="width: 100%;">
</div>
<div>
<img src="server secure.png" alt="server secure" style="width: 100%;">
</div>
<div>
<img src="used apps secure.png" alt="used programms" style="width: 100%;">
</div>
</body>
</html>