-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (116 loc) · 3.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>List of Linux OS</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
<style>
body {
background-color: black;
}
h1 {
font-size: 30pt;
text-align: center;
color: rgb(132, 136, 139);
}
h2 {
color: #ffffff;
font-family: cursive;
}
ul {
font-size: 18pt;
font-style: italic;
font-family: cursive;
font-weight: 300;
}
#list1 {
position: relative;
background-color: rgb(0, 0, 0);
color: rgb(141, 134, 134);
width: 20em;
border: 5px solid #ffffff;
}
#list2 {
position: relative;
background-color: rgb(0, 0, 0);
color: rgb(141, 134, 134);
width: 20em;
border: 5px solid #ffffff;
}
#img1 {
width: 512px;
height: 320px;
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 10px;
border: 5px solid #4f4f4f;
}
#image_page {
text-align: center;
padding: 5px;
position: relative;
left: 50%;
border: 5px solid #ffffff;
width: 10em;
}
#link_1 {
font-size: 24px;
color: yellow;
background-color: transparent;
padding: 1em;
}
</style>
</head>
<body>
<h1>Linux Distrobutions</h1>
<div id="image_page">
<h2>images</h2>
<a id="link_1" href="images.html">image page</a>
</div>
<div id="list1">
<ul>
<li>Ubuntu</li>
<li>Arch Linux</li>
<li>ArcoLinux</li>
<li>Manjaro</li>
<ul>
<<<<<<< HEAD
<li>FreeBSD</li>
<li>netBSD</li>
<li>OpenBSD</li>
<li>GhostBSD</li>
<li>Doom Emacs</li>
<li>Spacemacs</li>
=======
<li>Gnome</li>
<li>Kde</li>
<li>XFCE</li>
>>>>>>> 3b57803fad4bee0a8e6ff423e4d41bfb0e893cc5
</ul>
<li>Debian</li>
<li>Fedora</li>
<li>Opensuse</li>
<li>Elementary OS</li>
<li>Garuda</li>
<li>test</li>
<li>centos</li>
</ul>
</div>
<h1>BSD</h1>
<img id="img1" src="images/wallhaven-831r6o_1280x800.png" alt="freebsd">
<div id="list2">
<ul>
<li>FreeBSD</li>
<li>netBSD</li>
<li>OpenBSD</li>
<li>GhostBSD</li>
<li>Doom Emacs</li>
</ul>
</div>
<script src="" async defer></script>
</body>
</html>