-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_8.html
124 lines (116 loc) · 3.72 KB
/
page_8.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alpaka Social Network</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #ffedcc;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #ff6600;
text-align: center;
}
p {
line-height: 1.6;
color: #444;
}
.fact {
background-color: #ffe6b3;
padding: 15px;
border-radius: 8px;
margin-bottom: 15px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
position: relative;
}
.fact .actions {
position: absolute;
top: 10px;
right: 10px;
}
.stats {
background-color: #ffd699;
padding: 15px;
border-radius: 8px;
margin-bottom: 15px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.stats li {
list-style: none;
margin-bottom: 8px;
}
.stats li span.label {
font-weight: bold;
}
img {
display: block;
margin: 20px auto;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div class="container">
<h1>Charly – Profilseite</h1>
<!-- <img src="img/aliceblue.svg" alt="Charly" width="400">-->
<img src = "img/aliceblue.svg" alt="My Happy SVG" height="200px" width="200px"/>
<div class="stats">
<h2>Statistics</h2>
<ul>
<li><span class="label" class="color">Farbe:</span> aliceblue</li>
<li><span class="label" class="height">Größe:</span> 92</li>
<li><span class="label" class="birthday">Geburtstag:</span> 13.02.2007</li>
<li><span class="label" class="hair_length">Haarlänge:</span> short</li>
</ul>
</div>
<div class="fact">
<h2>Mein liebstes Hobby</h2>
<p>Backen!</p>
<div class="actions">
<span>Likes: 120</span> | <span>Shares: 175</span>
</div>
</div>
<div class="fact">
<h2>#About yesterday</h2>
<p>Ich habe gestern alte Fotoalben durchgeschaut und mich an vergangene Zeiten erinnert.</p>
<div class="actions">
<span>Likes: 226</span> | <span>Shares: 125</span>
</div>
</div>
<div class="fact">
<h2>Ein Funfact über mich</h2>
<p>Ich falte gern Origami aus Kaugummipapier und ich habe damit schon eine Ausstellung gemacht.</p>
<div class="actions">
<span>Likes: 53</span> | <span>Shares: 16</span>
</div>
</div>
<div class="fact">
<h2>Diese Sprachen spreche ich </h2>
<p>Deutsch, Griechisch, Arabisch</p>
<div class="actions">
<span>Likes: 26</span> | <span>Shares: 42</span>
</div>
</div>
<div class="fact">
<h2>Lieblingseissorte</h2>
<p>Erdbeere</p>
<div class="actions">
<span>Likes: 117</span> | <span>Shares: 95</span>
</div>
</div>
</div>
</body>
</html>