-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.63 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
<!-- 3. Build a simple blog web page with 3 pages home, web development, and web design. Each page must
contain hyperlinks to other pages in the top, a heading of the page topic and a paragraph of information.
For the home page you can add some information about yourself. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="index.html" class="active">Home</a>
<a href="web_development.html">Web Development</a>
<a href="web-design.html">Web Design</a>
</nav>
</header>
<section class="home">
<div class="home-content">
<h3>Hi</h3>
<h1>I'm <span>Jyotirmoy Kashyap<br></span>a Full stack developer.</h1>
<p align="justify">
Hi, I am a dedicated web developer, as a web developer I likely work on creating and maintaining websites and web appliactions.
I love creating beautiful and functional websites.I share my knwowledge and experiences in web development and design in this blog.
I am passionate about solving complex problems and keep learning to stay ahead.
Stay tuned for interesting articles and tutorials.
</p>
</div>
<div>
<img src="stu3.jfif" alt="student-photo">
</div>
</section>
<footer>
<a href="#">Copyright © 2024 All Right Reserved</a>
</footer>
</body>
</html>