-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
103 lines (99 loc) · 4.29 KB
/
about.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
<!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="about.css">
</head>
<body>
<header>
<div id="branding">
<h1>Joseph</h1>
</div>
<ul class="list">
<li><a href="index.html" >Home</a></li>
<li><a href="about.html" class="header-active">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
<div class="container">
<div class="part">
<h1 class="soft">About Us</h1>
<p id="pra">Developer <span class="sp2">& Designer</span></p>
<p>I am a front-end web developer. I can provide a clean code and pixel perfect Design.
I also make the website more & more interactive with wed animations.
I can provide a clean code and pixel perfect Design.I also make the website more & more interactive with wed animations.
We makes your website Accessible to all users, regardless of thier device.</p>
<button class="btn"> Read More</button>
</div>
<div class="part">
<img class="img1" src="./images/pexels-spencer-selover-428333.jpg" alt="">
</div>
</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>
</body>
</html>
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This is about 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="about.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Joseph</h1>
</div>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Blogs</a></li>
<li><a href="#">Contact Me</a></li>
<li><a href="#">Login</a></li>
</ul>
</nav>
</header>
<section class="about">
<div class="image">
<img src="./images/pexels-spencer-selover-428333.jpg" alt="">
</div>
<div class="about-text">
<h1>About Us</h1>
<h5>Developer <span class="sp2">& Designer</span></h5>
<p>I am a front-end web developer. I can provide a clean code and pixel perfect Design.
I also make the website more & more interactive with wed animations.
I can provide a clean code and pixel perfect Design.I also make the website more & more interactive with wed animations.
We makes your website Accessible to all users, regardless of thier device.</p>
<button class="btn">Read more</button>
</div>
</section>
<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>
</body>
</html> -->