-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (136 loc) · 5.38 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!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="This website is about HTML, CSS and JavaScript">
<meta name="keywords" content="web, html, css, JavaScript, frontend">
<meta name="author" content="Mesut OZTURK">
<!------------ favicon ------------->
<link rel="icon" type="image/png" sizes="32x32" href="./media/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./media/icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./media/icons/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!----------------- CND --------------------->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/project.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/nav.css">
<title>PALA INDUSTRY | Mesut OZTURK</title>
<style>
.parallax_section {
width: 100%;
height: 100vh;
background-image: url('https://images.unsplash.com/photo-1639960579209-18b8ec4d0938?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1031&q=80');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: center;
display:flex;
justify-content: center;
align-items: center;
}
.parallax_section a {
color: black;
text-decoration: none;
padding: 20px 30px;
border-radius: 0 10px;
font-size: 3em;
font-family:Arial, Helvetica, sans-serif;
background-color: rgba(255, 255, 255, 0.5);
border: none;
}
.normal_section {
width: 100%;
min-height: 80vh;
padding: 50px 0;
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.normal_section h2 {
font-size: 3em;
background-color: purple;
color: white;
padding: 20px 40px;
text-align: center;
margin-bottom: 30px;
cursor: pointer;
}
.normal_section p {
font-size: 2em;
text-align: justify;
margin: 50px 0;
width: 80%;
min-width: 200px;
}
</style>
</head>
<body>
<div id="main-outer-container">
<!---------------- HEADER -------------->
<!-- <header id="main-header">
</header> -->
<!---------------- NAV -------------->
<nav>
<div class="hidden">
<i class="fas fa-align-justify"></i>
</div>
<ul>
<li>
<span><i class="fas fa-home"></i></span>
<a href="./index.html">HOME</a>
</li>
<li>
<span><i class="fas fa-video"></i></span>
<a href="./project.html">PROJECT</a>
</li>
<li>
<span><i class="fas fa-camera"></i></span>
<a href="./gallery.html">GALLERY</a>
</li>
<!-- <li>
<span><i class="fas fa-address-card"></i></span>
<a href="aboutme.html">ABOUT ME</a>
</li>
<li>
<span><i class="fas fa-comment-dots"></i></span>
<a href="contact.html">CONTACT</a>
</li> -->
</ul>
</nav>
<!---------------- MAİN -------------->
<main id="main-main">
<!-- <section class="normal_section"></section> -->
<section class="parallax_section">
<a href="./project.html">PROJECT</a>
</section>
<section class="normal_section">
<h2>Welcome To My First Project Page</h2>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Itaque quia voluptates amet delectus quo
aliquam inventore cum pariatur optio voluptatibus
veniam cupiditate animi sapiente fugit numquam,
natus nobis facere ullam.
</p>
</section>
<section class="parallax_section">
<a href="./gallery.html">GALLERY</a>
</section>
</main>
<!---------------- FOOTER -------------->
<footer id="main-footer">
</footer>
</div>
</body>
</html>