-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
99 lines (98 loc) · 3.97 KB
/
work.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="work page">
<link rel="icon" href="img/icons8-portefeuille-30(1).png" type="image/x-icon">
<title>portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="nav_cont">
<ul class="nav_bar">
<li><a href="index.html">home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</header>
<main>
<section class="container">
<h2>work</h2>
<div class="underline"></div>
<input type="radio" name="categories" id="All" value="All">
<input type="radio" name="categories" id="Css" value="Css">
<input type="radio" name="categories" id="Js" value="Js">
<ul class="filters">
<li><label for="All">All</label></li>
<li><label for="Css">Css</label></li>
<li><label for="Js">Js</label></li>
</ul>
<div class="cards_cont">
<div class="card" data-category="Css">
<div class="img_cont">
<img src="img/GOT.jpg" alt="game of thrones" width="200px" height="400px">
</div>
<div class="about_project">
<h4>Game of thrones</h4>
<h6>Html/Css</h6>
<a href="GOT.html">
<button>Learn More</button>
</a>
</div>
</div>
<div class="card" data-category="Css">
<div class="img_cont">
<img src="img/breaking bad.jpg" alt="breaking bad" width="200px" height="400px">
</div>
<div class="about_project">
<h4>Breaking bad</h4>
<h6>Html/Css</h6>
<a href="breaking.html">
<button>Learn More</button>
</a>
</div>
</div>
<div class="card" data-category="Js">
<div class="img_cont">
<img src="img/mr robot.jpg" alt="mr robot" width="200px" height="400px">
</div>
<div class="about_project">
<h4>Mr robot</h4>
<h6>Java Script</h6>
<a href="robot.html">
<button>Learn More</button>
</a>
</div>
</div>
<div class="card" data-category="Css">
<div class="img_cont">
<img src="img/prison break.jpg" alt="prison break" width="200px" height="400px">
</div>
<div class="about_project">
<h4>Prison break</h4>
<h6>html/css</h6>
<a href="prison.html">
<button>Learn More</button>
</a>
</div>
</div>
<div class="card" data-category="Js">
<div class="img_cont">
<img src="img/vikings.jpg" alt="vikings" width="200px" height="400px">
</div>
<div class="about_project">
<h4>vikings</h4>
<h6>Java Script</h6>
<a href="vikings.html">
<button>Learn More</button>
</a>
</div>
</div>
</div>
</section>
</main>
</body>