-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (78 loc) · 2.71 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
<!DOCTYPE html>
<html>
<head>
<title>
main
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide">
<link rel="stylesheet" href="main.css">
<style>
.title_bg {
width: auto;
height: 400px;
margin-top: 40px;
margin-left: 0px;
margin-right: 0px;
position: relative;
background-color: lightgrey;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
@media only screen and (max-width: 600px) {
.title_bg {
width: auto;
height: 400px;
margin-top: 100px;
margin-left: 0px;
margin-right: 0px;
position: relative;
background-color: lightgrey;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
}
.tracking-in-expand {
-webkit-animation: tracking-in-expand 5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
font-family: "Audiowide", monospace;
color: white;
position: absolute;
top: 40%;
width: 100%;
text-align: center;
}
@keyframes tracking-in-expand {
0% {
letter-spacing: -0.5em;
opacity: 0;
}
40% {
opacity: 0.6;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<div class="w3-top dark-grey">
<div class="w3-bar dark-light-grey w3-center">
<div style="width:33.33%" class="w3-bar-item w3-mobile w3-round-large w3-deep-purple">Home</div>
<a href="about" style="width:33.33%" class="w3-bar-item w3-button w3-mobile w3-round-large dark-light-grey">About</a>
<a href="social_profile" style="width:33.33%" class="w3-bar-item w3-button w3-mobile w3-round-large dark-light-grey">Social Profile</a>
</div>
</div>
<!--end of header-->
<div class="title_bg">
<h1 class="tracking-in-expand">Homespace</h1>
</div>
<div class="w3-container">
<br/>
<iframe src="notepad.html" width="100%" height="600" style="border:none;"></iframe>
</div>
</body>
</html>