-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (74 loc) · 3.26 KB
/
index.html
File metadata and controls
96 lines (74 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello!</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<div id="banner"></div>
<div id="nav">
<div id="nav-home"><a href="index.html">Home</a></div>
<div class="nav">
<div class="menu">
<a href="travels.html">Travels</a>
<a href="hobby.html">Hobby</a>
<a href="myCats.html">MyCats</a>
<a href="cook.html">Cook</a>
</div>
</div>
</div>
</header>
<!--main content-->
<h1>
Who Am I
</h1>
<main id="container">
<div class="kam">
<img class="index-foto" src="https://cdn.glitch.com/1565b414-513f-4342-b74c-eb7a5ac33351%2FIMG_6842.jpg?v=1566339219499" alt = "a man in suit">
<h3>
Ex-key account manager
</h3>
</div>
<div class="husband">
<img class="index-foto" src="https://cdn.glitch.com/1565b414-513f-4342-b74c-eb7a5ac33351%2FHusband.jpg?v=1566339260585" alt = "a man and a woman about to blow candle on a small cake">
<h3>
Husband
</h3>
</div>
<div class="catFather">
<img class="index-foto" src="https://cdn.glitch.com/1565b414-513f-4342-b74c-eb7a5ac33351%2Ffather.jpeg?v=1566339320777" alt = " a man with two cats on him">
<h3>
Cat Father
</h3>
</div>
<div class="student">
<img class="index-foto" src="https://cdn.glitch.com/1565b414-513f-4342-b74c-eb7a5ac33351%2Fstudent1.jpg?v=1566340500333" alt = "some books, biscuits and oranges on a desk">
<h3>
student
</h3>
</div>
<div class="friend">
<img class="index-foto" src="https://cdn.glitch.com/1565b414-513f-4342-b74c-eb7a5ac33351%2Ffriend.jpeg?v=1566339462113" alt = "a goup of people having drinks">
<h3>
Friend
</h3>
</div>
<div class="dreamer">
<img class="index-foto" src="https://cdn.glitch.com/1565b414-513f-4342-b74c-eb7a5ac33351%2Fdreamer2.jpg?v=1566340541092" alt = "Jules Verne's novel, From the Earth to the Moon">
<img class="index-foto" src="https://cdn.glitch.com/1565b414-513f-4342-b74c-eb7a5ac33351%2Fdreamer1.jpg?v=1566340526613" alt = "old newspapers">
<h3>
Dreamer
</h3>
</div>
</main>
<footer>
<p>Serhat Sümer © 2019</p>
<a href="mailto:serhat-sumer@hotmail.com">Send Email</a>
</footer>
</body>
</html>