This repository was archived by the owner on Mar 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
53 lines (52 loc) · 1.37 KB
/
about.html
File metadata and controls
53 lines (52 loc) · 1.37 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
<!DOCTYPE html>
<meta charset="UTF-8">
<html>
<head>
<link href='//fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
<link rel="icon" type="image/png"
href="photos/My%20Logo(Watermark_version).png" />
</head>
<title>Home</title>
<script>
</script>
<style>
.space { margin-top: 25px; }
.fill {
display: flex;
justify-content: center;
align-items: center;
overflow: hidden
}
.background {
<!--filter: blur(3px);-->
background-image: url("photos/My%20Logo.png");
background-size: 100% 100%;
background-repeat: no-repeat;
}
.fill img {
flex-shrink: 0;
min-width: 100%;
min-height: 100%
}
<body>
<div class='background'>
<div id='header'>
<div class="topbar">
<canvas class="topbar" id="myCanvas" style="none;">This is not supported</canvas>
<script>
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.canvas.width = window.innerWidth;
ctx.fillStyle = "Darkseagreen";
ctx.fillRect(0,0,2000,75);
ctx.closePath();
</script>
</div>
<div class="top">
<a style="text-decoration:none;" href = '/home'>Home</a>
<a style="text-decoration:none;" href = '/about'>About</a>
<a style="text-decoration:none;" href = '/Blog'>Blog</a>
<a style="text-decoration:none;" href = '/files'>Files</a>
</div>
</div>