-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CV List</title>
<link rel="stylesheet" href="./reset.css" />
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./listElements.css" />
</head>
<body>
<div class="row section1">
<div class="cell">
<div id="header">
<h1>CV List</h1>
<label for="search">Search</label>
<input id="search" type="search" placeholder=" name your dev here"/>
</div>
</div>
</div>
<div class="row section2">
<div class="cell"></div>
<div class="cell">
<ul>
<li>
<a href="./idan-cv/index.html" target="_blank">Idan CV</a>
</li>
<li>
<a href="./OlegCV/index.html" target="_blank">Oleg CV</a>
</li>
<li>
<a href="./shayCV/shayCV.html" target="_blank">Shai CV</a>
</li>
</ul>
</div>
<div class="cell">
<div class="cvZone">CV frame zone</div>
</div>
</div>
<div class="row section3">
<div class="cell">
<div id="footer">
<hr/>
<p>Footer area</p>
</div>
</div>
</div>
<div class="row section4">
<div class="cell">
<div class="credit">
<hr>
<p>credtit: Image by <a href="https://www.freepik.com/free-photo/top-view-desk-concept-with-gray-background_5076474.htm#query=resume%20background&position=1&from_view=keyword&track=ais&uuid=1fef05e2-7470-4b8a-88a5-52cc8a9e44bd">Freepik</a></p>
</div>
</div>
</div>
<script src="./shay.js"></script>
</body>
</html>