-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
116 lines (115 loc) · 4.49 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="discription" content="portofolio of Patricia Pereira frontend developer">
<title>styling</title>
<link href="css/style.css" rel="stylesheet" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;500;600;700;800&family=IBM+Plex+Sans+Arabic:wght@500&family=Markazi+Text:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@500;700&display=swap"
rel="stylesheet"
/>
<title>work</title>
</head>
<body>
<!-- Menu -->
<div class="container" id="menu">
<nav class="d-flex justify-content-between">
<img src="/img/logo.png" class="d-none d-md-block" alt="logo" />
<img
src="https://uploads.codesandbox.io/uploads/user/536b9ee2-9d41-444a-a85a-62ae77e381ac/L9xk-logo-small.jpg"
class="d-block d-md-none"
alt="small-logo"
/>
<ul>
<li>
<a href="/" title="Home">Home</a>
</li>
<li>
<a href="/about.html" title="about Patricia Pereira">About</a>
</li>
<li class="active">
<a href="/work.html" title="portifolio Patricia Pereira">Work</a>
</li>
<li>
<a href="/contact.html" title="contact to Patricia Pereira"
>Contact</a
>
</li>
</ul>
</nav>
</div>
<!-- End menu -->
<section class="content">
<div class="container">
<h1>Take a look at what I've been working on!</h1>
<div class="row">
<div class="col-lg-6">
<img src="img/Yogurt Project.png" class="pt-5 img-fluid" />
<h2 class="pt-4 text-center m-0">Yogurt Project</h2>
<p class="text-center">Frontend Developer</p>
</div>
<div class="col-lg-6">
<img src="img/Weather App.png" class="pt-5 img-fluid" />
<h2 class="pt-4 text-center m-0">Weather App</h2>
<p class="text-center">Frontend Developer</p>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<img src="img/Dictionary.png" class="pt-5 img-fluid" />
<h2 class="pt-4 text-center m-0">Dictionary</h2>
<p class="text-center">Frontend Developer</p>
</div>
<div class="col-lg-6">
<img src="img/Translation.png" class="pt-5 img-fluid" />
<h2 class="pt-4 text-center m-0">Translation</h2>
<p class="text-center">Frontend Developer</p>
</div>
</div>
</section>
<!-- ======== Footer ========= -->
<footer>
<div class="contact-box">
<div class="row">
<div class="col-md-6 col-sm">
<h4>Work Inquiry</h4>
<p class="mb-0">Let's work together</p>
</div>
<div class="col-md-6 col-sm">
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4 mt-4 mt-md-0">
<a href="contact.html" title="contact" class="btn btn-branding">Contact us</a>
</div>
<div class="col-md-4"></div>
</div>
</div>
</div>
</div>
<a href="emailto:[email protected]" class="email-link d-flex justify-content-center">[email protected]</a>
<div class="socialmedia-link d-flex justify-content-center">
<a href="www.instagram.com" title="instagramprofile" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="www.github.com" title="githubprofiles" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="www.twitter.com" title="twitterprofile" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</div>
<p class="text-center mt-4"> This is opensource available in <a href="https://github.com/fatemehkhoramdel/styling" title="source of project"> Fatemehkhoramdel github </a></p>
</footer>
</div>
</body>
</html>