-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtree.html
More file actions
133 lines (133 loc) · 3.11 KB
/
tree.html
File metadata and controls
133 lines (133 loc) · 3.11 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
<!doctype html>
<html>
<head>
<style>
body{
background-color: #ffb35c;
color: black;
}
</style>
<style>
#header2{
background-color:yellow;
width:100px;
padding:25px;
border:25px solid #f1a94e;
margin:25px;
}
#content{
background-color:grey;
width:800px;
padding:25px;
border:25px solid #f1a94e;
margin:25px;
}
#navigation{
background-color:#41e2a7;
width: 25%;
min-height: 1500px;
float: right;
}
#footer{
background-color:pink;
width:250px;
padding:25px 20px 15px 10px;
border:25px solid #f1a94e;
margin:25px 25px 25px 25px;
display:inline-block;
}
.column{
min-width: 300px;
display: inline-block;
vertical-align: top;
}
p{
line-height: 1.5;
}
</style>
<title>My blog</title>
</head>
<body style="font-family:verdana; color:darkred;">
<div id="navigation">
<p style="text-align:center;">Hwllo!</p>
</div>
<div id="header" class="verticalcenter" style="background-color:#ffb35c;">
<p style="text-align:center;"><img src="https://raw.githubusercontent.com/SMNik2546/tree.github.io/master/TCOZ7320.JPG" alt="me" width="100" height="170" style="border-radius: 50%;" alt="centered image"></p>
<style>
.verticalcenter {
display: table-cell;
height: 400px;
vertical-align: center;
box-sizing:border-box;
}
.verticalcenter p img {
position:relative;
animation-name: example;
animation-duration: 6s;
animation-iteration-count: infinite;
}
@keyframes example{
0% {left:0px; right:100px;}
50% {left:100px; right:0px;}
100% {left:0px; right:0px;}
}
</style>
</dive>
<div id="header2">
<div class="container">
<a href="index.html">My Blog</a>
<ul class="navbar-links">
<li><a href="about.html">About</a></li>
<li><a href="mailto:masoud.nikkhah1366@gmail.com">Contact</a></li>
</ul>
</div>
</div>
<div id="content">
<div class="container">
<div class="about">
<div class="about-author">
<img src="https://raw.githubusercontent.com/SMNik2546/tree.github.io/master/DSC_8129.JPG" height="300" width="450">
</div>
<h1 class="about-title" style="color:pink; font-family:arial;font-size:25px;">About Me</h1>
<div class="about-content">
<p>If somebody would have told me a week a go that I would be able to make a <strong>website</strong>, I would not have believed them.</p>
<p>Just a few days later, I came across <a href="https://getmimo.com">Mimo</a> and started to work on a <em>real</em> blog.</p>
<p>If you like my blog, please follow me on Facebook or Twitter and tell your family and friends about it. If you want to get in touch, please click on the contact link in the navigation bar.</p>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<div class="column">
<h4 style="color:green;font-family:serif;font-size:15px">My Links</h4>
<p>
<a href="https://twitter.com/me">Twitter</a>
<br>
<a href="https://facebook.com/me">Facebook</a>
</p>
</div>
<div class="column">
<h4 style="color:blue; font-family:fantasy;font-size:15px;">My Story</h4>
<p>Hi there! I am a winter web developer.</p>
</div>
</div>
</div>
<div id="footer2">
<div class="box"></div>
<style>
#footer2 {
border: 1px solid white;
box-sizing: border-box;
}
.box{background:#41cde2}
</style>
<p><span></span></p>
<ul>
<li><span></span></li>
<li><span></span></li>
</ul>
</div>
</div>
</body>
</html>