-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·61 lines (59 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First web page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="index.css">
</head>
<body>
<header class="nav-open">
<div id="branding">
<h1>Joseph</h1>
</div>
<nav class="main-nav">
<ul class="list">
<li><a href="index.html" class="header-active">Home</a></li>
<li id="bloglink"><a href="blogs.html">Blogs</a></li>
<li><a href="about.html" >About</a></li>
<li><a href="contact.html">Contact</a></li>
<!-- <li><a href="login.html">Login</a></li> -->
</ul>
</nav>
<button class="btn-mobile"><svg xmlns="http://www.w3.org/2000/svg" class="icon-mobile" name="menu-outline" height="24" viewBox="0 -960 960 960" width="24"><path d="M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" class="icon-mobile" name="close-outline" height="24" viewBox="0 -960 960 960" width="24"><path d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"/></svg>
</button>
</header>
<div class="container">
<div class="part">
<h1 class="soft">Hi, I'm Joseph Salton </h1>
<p id="pra"><span id="sp1"> Software Developer</span></p>
<p> Lorem ipsum dolor sit amet consectetur adipisicing elit.
In, incidunt laborum numquam delectus consequatur voluptatem id fuga at! Illo impedit,
repudiandae maxime velit libero sit ratione quam assumenda illum natus.</p>
<div>
<div id="btn-box">
<a href="about.html">Hire Me</a>
<a href="contact.html">Let's Talk</a>
</div>
<button class="login"> <a href="login.html"class="login" id="loginD">Login</a> </button>
<!-- <button class="btn1"> Read More</button> -->
</div>
</div>
<div class="part2">
<img class="img1" src="./images/picture.jpg" alt="">
</div>
</div>
<footer>
<h4>©Software Developer Copyright 2024</h4>
<div class="socialicons">
<a href=""><i class="fa-brands fa-facebook"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
<a href=""><i class="fa-brands fa-youtube"></i></a>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>