-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.15 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
65
66
67
68
69
70
71
72
73
74
<!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" />
<title>Portfolio</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav id="navbar">
<div class="navbar-center">
<a href="#welcome-section">About</a>
<a href="#projects">Work</a>
<a href="#contact">Contact</a>
</div>
</nav>
<section id="welcome-section">
<div class="banner-center">
<h1>Hey! I'm Ousman</h1>
<span>A Front-End Web Developer</span>
</div>
</section>
<section id="projects">
<h2>My past projects</h2>
<div class="underline"></div>
<div class="projects-center">
<a
href="https://food-explora-html-css-1stp.netlify.app/"
target="./blank"
>
<article class="project">
<img src="./images/food explora.jpeg" alt="" />
<h3 class="project-title">food xplora</h3>
</article>
</a>
<a
href="https://time-series-html-css-flexbox-2ndp.netlify.app/"
target="./blank"
>
<article class="project">
<img src="./images/time series.jpeg" alt="" />
<h3 class="project-title">time series</h3>
</article>
</a>
<a
href="https://portfolio-html-css-grid-3rdp.netlify.app/"
target="./blank"
>
<article class="project">
<img src="./images/portfolio.jpeg" alt="" />
<h3 class="project-title">John Doe Portfolio</h3>
</article>
</a>
<a
href="https://survey-form-fcc-assessment.netlify.app/"
target="./blank"
>
<article class="project">
<img src="./images/survey form.jpeg" alt="" />
<h3 class="project-title">survey form</h3>
</article>
</a>
</div>
<a
href="https://github.com/Oussy-Olami/"
target="./blank"
id="profile-link"
>my gitHub</a
>
</section>
</body>
</html>