-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (52 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Razan | Personal Website</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fonts/font-awesome.css">
<script src="https://kit.fontawesome.com/242ab0b392.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<h2 class="logo">myWeb<span>site!</span></h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="game.html">Game</a></li>
<li><a href="quiz.html">Quiz</a></li>
<i class="fa-solid fa-cat fa-lg" style="color: #ffffff;"></i>
</ul>
</nav>
</header>
<section class="hero">
<div class="saying">
<div class="greet"></div>
</div>
<script src="script.js"></script>
<div class="content">
<h4>Hello! I'm</h4>
<h1>Razan</h1>
<h3>Let's share stories! Subscribe <br>for my latest creations and <br>connect with me.</h3>
<div class="newsletter">
<form>
<input type="email" name="email" id="email" placeholder="Enter your email">
<input type="submit" value="Let is go">
</form>
</div>
</div>
</section>
<footer>
<p>Razan</p>
<div class="social">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-square-github"></i></a>
<a href="#"><i class="fa-brands fa-square-x-twitter"></i></a>
</div>
<p class="end"> © by Razan 2024</p>
</footer>
</body>
</html>