-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (98 loc) · 3.31 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
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
<!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">
<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=Archivo+Black&family=Cabin+Sketch:wght@400;700&display=swap" rel="stylesheet">
<title>NAZ-Projekt</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1 id="naz" class="text-shadow">NAZ PROJECT</h1>
<nav class="top-nav">
<a href="#">Home</a>
<a href="#my">About</a>
<a href="#contact">Projects</a>
<a href="#audio">Contact</a>
</nav>
</>
<main class="main">
<section >
<p> Hi there 😎</p>
<p>I'm here to 🙌</p>
<p>I love software ❤</p>
</section>
<section>
<div class="div">
<h2 id="my">MY PROJECT</h2>
</div>
<div class="img-div">
<img
src="https://cdn.pixabay.com/photo/2014/12/15/14/05/home-office-569153_960_720.jpg"
alt="" style="width: 350px;"
/>
<img
src="https://cdn.pixabay.com/photo/2020/02/15/16/09/loveourplanet-4851331_960_720.jpg"
alt="" style="width: 350px;"
/>
<img
src="https://cdn.pixabay.com/photo/2017/09/03/17/26/woman-2711279_960_720.jpg"
alt="" style="width: 350px;"
/>
<img
src="https://cdn.pixabay.com/photo/2017/05/21/15/14/balloons-2331488_960_720.jpg"
alt="" style="width: 350px;"
/>
<img
src="https://cdn.pixabay.com/photo/2020/02/24/06/33/crescent-4875339_960_720.jpg"
alt="" style="width: 350px;"
/>
<img
src="https://cdn.pixabay.com/photo/2018/03/19/18/20/tea-time-3240766_960_720.jpg"
alt="" style="width: 350px;"
/>
</div>
</section>
</main>
<footer id="contact">
<h3>Contact Me</h3>
<nav>
<a href="https://github.com" target="_blank"><i class="fa-brands fa-github"></i>GitHub</a>
<a href="https://www.instagram.com/direct/" target="_blank"> <i class="fa-brands fa-instagram"></i> Instagram</a>
<a href=""><i class="fa-brands fa-twitter"></i> Twitter</a>
<a href="https://www.linkedin.com/feed" target="_blank"><i class="fa-brands fa-linkedin"></i> LinkedIn</a>
</nav>
<form action="">
<h4>Send message</h4>
<input type="text" placeholder="Username" required/>
<input type="text" placeholder="E-mail" required />
<textarea
name=""
id=""
cols="30"
rows="10"
placeholder="Your Message"
></textarea>
<button class="btn" type="submit">SEND</button>
</form>
<div class="top">
<a href="#naz">Top</a>
</div>
</footer>
<!-- <div>
<video controls src="" style="width: 50%"></video>
</div>
<div> -->
<div>
<audio id="audio"
controls
src="assets/musics/Music/Mary Jane Deniz Üstü Köpürür.mp3"
style="width: 50%"
></audio>
</div>
</div>
</body>
</html>