-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·107 lines (103 loc) · 2.33 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
<html>
<head>
<meta name="viewport" content="width=device-width, intial-scale=1">
<style>
.en {
margin-left: 600px;
}
.pe {
color:green;
font-weight: bold;
margin-left: 400px;
}
.an {
color:yellow;
font-weight: bold;
}
.lo {
color:red;
font-weight: bold;
}
img {
padding-top: 66px;
padding-bottom: 40px;
padding-left: 80px;
}
li {
display: inline;
font-size: 22px;
padding: 20px;
font-weight: bold;
font-style: oblique;
margin-top: 10px;
}
.ho {
margin-left: 650px;
}
footer {
color: black;
margin-left: 80px;
margin-right: 60px;
margin-top: 234px;
font-size: 15px;
padding: 10px;
padding-left: 100px;
font-weight: bold;
font-style: italic;
text-align: right;
}
p {
margin-top: 136px;
left: 550px;
top: 200px;
bottom: 300px;
font-size: 28px;
color: rgb(0.5, 20, 500);
font-family: cursive;
}
.ex {
color:black;
font-weight: bold;
}
html {
background-image: url(https://wallpaper21.com/wp-content/uploads/2017/09/Coffee-HD-Free-Download-wallpaper-wpt8203329.jpg );
background-size: 100% 90%;
background-repeat: no-repeat;
}
.gridLayout {
display: grid;
grid-template-columns: 1fr 3fr;
grid-column-gap: 20px;
}
</style>
</head>
<body>
<nav>
<ul>
<li class="ho"> <a href="index.html"
id="Homelink">Home</a> </li>
<li> <a href="mystory.html"
id="Aboutlink">About</a> </li>
<li><a href="Links.html"
id="Linkslink">Links</a> </li>
<li> <a href="Resume.html"
id="Resumelink">Resume</a> </li>
<li> <a href="Gallery.html"
id="Gallery">Gallery</a> </li>
<li> <a href="Contacts.html"
id="Contctslink">Contacts</a> </li>
</ul>
</nav>
<main class="gridLayout">
<div class="sideColumn">
<img src="selinas.jpg" width="300" height="300">
</div>
<div class="mainColumn">
<p>Hello, my name is Selamawit.This is my first website, and it's better than <em><strong> Elon Musk's </em> </strong>. <br> <br class="en"> Thanks for visiting and Enjoy my website! <br> <br> <em class="pe"> PEACE <em class="an"> AND <em class="lo"> LOVE <em class="ex">!!! </em></p>
</div>
</main>
<footer>
<em><strong>Selinas © 2019 All right reserved.</em></strong>
</footer>
</body>
</html>