-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (124 loc) · 4.78 KB
/
index.html
File metadata and controls
124 lines (124 loc) · 4.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Html Website | Home</title>
<!-- favicon -->
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon">
<!-- Seo Meta tags -->
<meta name="description" content="Basic HTML website - Portfolio structure with multipages including the feature of Seo and social media sharing">
<meta name = "Author" content="Anusuyadevi">
<meta name="Keywords" content="Basic HTML Website, HTML only Portfolio, HTML structure with multipages ">
<!-- OG Tags -->
<meta property="og:title" content="Basic HTML Website">
<meta property="og:type" content="website">
<meta property="og:description" content="Basic HTML website - Portfolio structure with multipages including the feature of Seo and social media sharing">
<meta property="og:image" content="https://anu-techie.github.io/Basic-HTML-Website/images/web.jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:url" content="https://anu-techie.github.io/Basic-HTML-Website/">
<!-- Type Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfilePage",
"mainEntity": {
"@type": "Person",
"name": "Anusuyadevi B",
"jobTitle": "Full Stack Developer",
"email": "mailto:anusuyadevi1121@gmail.com",
"alumniOf": {
"@type": "CollegeOrUniversity",
"name": "Bharathiar University"
},
"knowsAbout": [
"HTML", "CSS", "JavaScript",
"Python", "Django", "MySQL",
"REST API", "Responsive Design"
],
"makesOffer": {
"@type": "Service",
"name": "Website Development",
"description": "I build modern business websites with SEO."
}
}
}
</script>
</head>
<body>
<header>
<h1>Anusuyadevi B</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Full Stack Developer</h2>
<p>Front-end: HTML,CSS, Javascript | Back-end: Python, RDBMS, Rest API</p>
</section>
<main class="content">
<section class="projects">
<h3>Projects</h3>
<ul>
<li><a href="#">Resume</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Task Tracker</a></li>
<li><a href="#">Github User activity</a></li>
<li><a href="#">Landing Page</a></li>
</ul>
</section>
<section class="experience">
<h3>Experience</h3>
<article>
<h4>roadmap.sh</h4>
<p>Solved all Front-end and Back-end Projects</p>
<a href="https://roadmap.sh/u/anusuyadevib">Visit my profile</a>
</article>
<article>
<h4>Open source work</h4>
<p>Contributed to 50 opensource projects.</p>
<a href="https://github.com/anu-techie">Visit my Github Profile</a>
</article>
</section>
<section class="education">
<h3>Education</h3>
<p>Graduated in BSc Computer Science</p>
<p>Courses I took :</p>
<ul>
<li>OOPs Concept</li>
<li>DSA</li>
<li>Network Application</li>
<li>Webdesign</li>
<li>Web development</li>
</ul>
</section>
</main>
<section class="review">
<h3>Review from my teachers</h3>
<article>
<blockquote>Delivered our website ahead of schedule with clean code and a responsive design. Highly impressed!</blockquote>
<p>R N Kumaar<br>
<span>CCL, founder</span></p>
</article>
<article>
<blockquote>She understood our requirements perfectly and built a dashboard that exceeded our expectations.</blockquote>
<p>Bhuvana<br>
<span>Library officer</span></p>
</article>
<article>
<blockquote>Very professional and supportive throughout the project. Will definitely work with her again!</blockquote>
<p>Edwin<br>
<span>Aali designs, founder</span></p>
</article>
</section>
<footer>
<p>© All right reserved 2025</p>
</footer>
</body>
</html>