-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (79 loc) · 2.57 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
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles/styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap"
rel="stylesheet"
/>
<title>Özgür's Portfolio</title>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container flex">
<img src="images/ozgurlogo2.png" alt="Ozgurs Logo" class="logo" />
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/portfolio.html">Portfolio</a></li>
<li><a href="pages/about.html">About</a></li>
</ul>
</nav>
</div>
</div>
<!-- HOME SECTION -->
<section class="home-head">
<div class="container grid">
<img src="images/pic.png" alt="A picture of Ozgur" />
<div class="home-text">
<h1>Hello, I'm Özgür.</h1>
<p>I'm an aspiring Full stack Web Developer</p>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="footer bg-dark">
<div class="container grid grid-3">
<div>
<h1>Özgür Baserdem</h1>
<p>Copyright © 2020</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/portfolio.html">Portfolio</a></li>
<li><a href="pages/about.html">About</a></li>
</ul>
</nav>
<div class="social">
<h3>Get in touch!</h3>
<a
href="mailto:[email protected]?subject=Title&body=Message"
><i class="fas fa-at fa-2x"></i
></a>
<a href="https://github.com/Oz90/"
><i class="fab fa-github fa-2x"></i
></a>
<a href="https://www.facebook.com/ozgur.baserdem"
><i class="fab fa-facebook fa-2x"></i
></a>
<a
href="https://www.linkedin.com/in/%C3%B6zg%C3%BCr-baserdem-985b7283/"
><i class="fab fa-linkedin fa-2x"></i
></a>
</div>
</div>
</footer>
</body>
</html>