-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
85 lines (73 loc) · 2.83 KB
/
test.html
File metadata and controls
85 lines (73 loc) · 2.83 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
<!DOCTYPE html>
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style>
.main {
margin-left: 160px;
font-size: 18px;
padding: 0px 10px;
}
body {
font-family: "Monaco", "Lucida Console", monospace;
color: #00ff00;
font-size: 18px;
}
.sidenav {
height: 100%;
width: 160px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
padding-top: 20px;
}
.sidenav a {
padding: 1px 8px 1px 16px;
text-decoration: none;
font-size: 18px;
}
.sidenav a:hover {
color: #00aaff;
}
.main {
margin-left: 160px;
padding: 0px 10px;
}
.grid-container {
display: grid;
grid-template-columns: 210px 210px;
padding: 10px;
}
.grid-item {
border: 1px solid rgba(0, 0, 0, 0.8);1
text-align: center;
}
</style>
<title>LukasExists</title>
</head>
<body style="background-color:#222;">
<div class="sidenav">
<a href="https://scratch.mit.edu/users/ToasterPanic/">Scratch</a> <br>
<a href="https://github.com/lukasexists">Github</a>
</div>
<div class="main">
I code things. Some cool, some less. <br> Honestly I just wanted to make a site lol
<br> <a href="https://lukasexists.github.io/insulter/index.html">Insult generator, for when you can't come up with a decent insult.</a>
<div style="height:300px; width:200px; border-width:3px; border-style: solid; border-radius:5px">
<img src="./test_files/saved_resource" alt="cat fat">
It's a cat! Such a precious kitty!
</div>
<div class="grid-container">
<div class="grid-item" style="height:300px; width:200px; border-width:3px; border-style: solid; border-radius:5px">
<img style="height:200px; width:194px" src="./test_files/saved_resource" alt="cat fat">
It's a cat! Such a precious kitty!
</div>
<div class="grid-item" style="height:300px; width:200px; border-width:3px; border-style: solid; border-radius:5px">
<img style="height:200px; width:194px" src="./test_files/saved_resource" alt="cat fat">
It's a cat! Such a precious kitty!
</div><div class="grid-item" style="height:300px; width:200px; border-width:3px; border-style: solid; border-radius:5px">
<img style="height:200px; width:194px" src="./test_files/saved_resource" alt="cat fat">
It's a cat! Such a precious kitty!
</div></div>
</div>
</body></html>