-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesertpoemsblog.html
89 lines (89 loc) · 1.94 KB
/
desertpoemsblog.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
<!DOCTYPE html>
<head>
<title>NoMADiTy</title>
<link href="/normalize.css" rel="stylesheet">
<style>
body {
max-width: 800px;
margin: 0 auto;
}
header {
text-align: center;
background: url('http://i.imgur.com/Sa0wY7y.jpg');
background-size: cover;
color: white;
}
a {
color: white;
}
h1 {
font-size: 70px;
color: rgba(150,10,10,0.7);
}
img {
width: 100px;
height: 100px;
margin: 40px 630px 0px 0px;
border: 2px solid white;
border-radius: 20px;
}
ul {
padding: 10px;
background: rgba(0,0,0,0.5);
}
li {
display: inline;
padding: 0px 10px 0px 10px;
}
article {
max-width: 500px;
padding: 20px;
margin: 0 auto;
}
@media (max-width: 500px) {
h1 {
font-size: 36px;
padding: 5px;
}
li {
padding: 5px;
display: block;
}
img {
width: 50px;
height: 50px;
}
}
</style>
</head>
<body>
<header>
<h1>NoMADiTy Blog</h1>
<img src="http://i.imgur.com/wO5dsP4.jpg">
<ul>
<li><a href="https://dash.generalassemb.ly/gpjalameda/build-your-own-personal-website">About Me</a></li>
<li><a href="#">Poems From The Desert</a></li>
<li><a href="#">Ruby Red Sands</a></li>
</ul>
</header>
<article>
<h2>Moon eyes</h2>
<p>I like your eyes, and I like the moon too, I suffer for love, dreaming with a world, I never belong too.</p>
<button>Like</button>
</article>
<article>
<h2>Hidden waters</h2>
<p>Are the veins of the desert.</p>
<button>Like</button>
</article>
<article>
<h2>Burning Sun</h2>
<p>Blinded looking at the burning sun, instead of looking at the abyss of your eyes.</p>
<button>Like</button>
</article>
<script>
$("button").on("click", function() {
alert("Clicked!");
});
</script>
</body>