Skip to content

Commit 097160a

Browse files
reuploading
1 parent bdf5eb5 commit 097160a

7 files changed

Lines changed: 306 additions & 0 deletions

File tree

google029cc6ecea1f64c5.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
google-site-verification: google029cc6ecea1f64c5.html

googlec978fa026335d582.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
google-site-verification: googlec978fa026335d582.html

index.html

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<title>Developer Anaz (DevAnaZ) - Portfolio</title>
8+
<meta name="description" content="Developer Anaz (DevAnaZ) portfolio showcasing projects, documentation, GitHub work, and development skills.">
9+
<meta name="keywords" content="Developer Anaz, DevAnaZ, portfolio, web developer, GitHub, projects, coding">
10+
<meta name="author" content="Developer Anaz">
11+
12+
<!-- Google Search Console Verification -->
13+
<meta name="google-site-verification" content="jOtmtZ4JnWDhiRAAMJGOzYWF_FlTcJw2jBuxYLrOUUY" />
14+
15+
<!-- Monetag -->
16+
<meta name="monetag" content="f607f195ef944959b12ef61fe42d4dad">
17+
18+
<link rel="stylesheet" href="styles.css">
19+
</head>
20+
<body>
21+
<header>
22+
<nav>
23+
<div class="menu-icon" onclick="toggleMenu()">&#9776;</div>
24+
<ul id="nav-links">
25+
<li><a href="#home">Home</a></li>
26+
<li><a href="#docs">Docs</a></li>
27+
<li><a href="#github">GitHub</a></li>
28+
<li><a href="#about">About</a></li>
29+
<li><a href="#sitemap">Sitemap</a></li>
30+
<li><a href="#policy">Policy</a></li>
31+
</ul>
32+
</nav>
33+
</header>
34+
35+
<main>
36+
<section id="home">
37+
<h1>Welcome to Developer Anaz's Portfolio</h1>
38+
<p>Your source for all things coding, development, and tech.</p>
39+
</section>
40+
41+
<section id="docs">
42+
<h2>Documentation</h2>
43+
<p>Find all the necessary documents and guides here.</p>
44+
</section>
45+
46+
<section id="github">
47+
<h2>GitHub</h2>
48+
<p>Check out my projects on <a href="https://github.com/developeranaz" target="_blank" rel="noopener noreferrer">GitHub</a>.</p>
49+
</section>
50+
51+
<section id="about">
52+
<h2>About Me</h2>
53+
<p>My name is Anaz, and I'm a passionate developer focused on creating efficient and scalable solutions. With experience in web development, I specialize in both front-end and back-end technologies. Explore my work on <a href="https://github.com/developeranaz" target="_blank" rel="noopener noreferrer">GitHub</a> and connect with me to learn more.</p>
54+
</section>
55+
56+
<section id="sitemap">
57+
<h2>Sitemap</h2>
58+
<p>Navigate through the site using the links above.</p>
59+
</section>
60+
61+
<section id="policy">
62+
<h2>Policy</h2>
63+
<p>Read through the site policies to understand how this portfolio operates.</p>
64+
</section>
65+
</main>
66+
67+
<footer>
68+
<p>Developer Anaz &copy; 2014-2026</p>
69+
</footer>
70+
71+
<script src="script.js"></script>
72+
</body>
73+
</html>

index.md

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
---
2+
layout: default
3+
---
4+
5+
Text can be **bold**, _italic_, or ~~strikethrough~~.
6+
7+
[Link to another page](./another-page.html).
8+
9+
There should be whitespace between paragraphs.
10+
11+
There should be whitespace between paragraphs. We recommend including a README, or a file with information about your project.
12+
13+
# Header 1
14+
15+
This is a normal paragraph following a header. GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere.
16+
17+
## Header 2
18+
19+
> This is a blockquote following a header.
20+
>
21+
> When something is important enough, you do it even if the odds are not in your favor.
22+
23+
### Header 3
24+
25+
```js
26+
// Javascript code with syntax highlighting.
27+
var fun = function lang(l) {
28+
dateformat.i18n = require('./lang/' + l)
29+
return true;
30+
}
31+
```
32+
33+
```ruby
34+
# Ruby code with syntax highlighting
35+
GitHubPages::Dependencies.gems.each do |gem, version|
36+
s.add_dependency(gem, "= #{version}")
37+
end
38+
```
39+
40+
#### Header 4
41+
42+
* This is an unordered list following a header.
43+
* This is an unordered list following a header.
44+
* This is an unordered list following a header.
45+
46+
##### Header 5
47+
48+
1. This is an ordered list following a header.
49+
2. This is an ordered list following a header.
50+
3. This is an ordered list following a header.
51+
52+
###### Header 6
53+
54+
| head1 | head two | three |
55+
|:-------------|:------------------|:------|
56+
| ok | good swedish fish | nice |
57+
| out of stock | good and plenty | nice |
58+
| ok | good `oreos` | hmm |
59+
| ok | good `zoute` drop | yumm |
60+
61+
### There's a horizontal rule below this.
62+
63+
* * *
64+
65+
### Here is an unordered list:
66+
67+
* Item foo
68+
* Item bar
69+
* Item baz
70+
* Item zip
71+
72+
### And an ordered list:
73+
74+
1. Item one
75+
1. Item two
76+
1. Item three
77+
1. Item four
78+
79+
### And a nested list:
80+
81+
- level 1 item
82+
- level 2 item
83+
- level 2 item
84+
- level 3 item
85+
- level 3 item
86+
- level 1 item
87+
- level 2 item
88+
- level 2 item
89+
- level 2 item
90+
- level 1 item
91+
- level 2 item
92+
- level 2 item
93+
- level 1 item
94+
95+
### Small image
96+
97+
![Octocat](https://github.githubassets.com/images/icons/emoji/octocat.png)
98+
99+
### Large image
100+
101+
![Branching](https://guides.github.com/activities/hello-world/branching.png)
102+
103+
104+
### Definition lists can be used with HTML syntax.
105+
106+
<dl>
107+
<dt>Name</dt>
108+
<dd>Godzilla</dd>
109+
<dt>Born</dt>
110+
<dd>1952</dd>
111+
<dt>Birthplace</dt>
112+
<dd>Japan</dd>
113+
<dt>Color</dt>
114+
<dd>Green</dd>
115+
</dl>
116+
117+
```
118+
Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
119+
```
120+
121+
```
122+
The final element.
123+
```

sitemap.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
4+
<url>
5+
<loc>https://developeranaz.github.io/dumpy-level-calculator/</loc>
6+
<changefreq>weekly</changefreq>
7+
<priority>0.8</priority>
8+
</url>
9+
10+
<url>
11+
<loc>https://developeranaz.github.io/webapps/gofile.io/</loc>
12+
<changefreq>weekly</changefreq>
13+
<priority>0.8</priority>
14+
</url>
15+
16+
</urlset>

styles.css

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
}
6+
7+
body {
8+
font-family: Arial, sans-serif;
9+
line-height: 1.6;
10+
}
11+
12+
header {
13+
background: #333;
14+
color: #fff;
15+
padding: 1rem 0;
16+
text-align: center;
17+
position: relative;
18+
}
19+
20+
nav {
21+
display: flex;
22+
justify-content: space-between;
23+
align-items: center;
24+
padding: 0 1rem;
25+
}
26+
27+
.menu-icon {
28+
display: none;
29+
font-size: 1.5rem;
30+
cursor: pointer;
31+
}
32+
33+
nav ul {
34+
list-style: none;
35+
display: flex;
36+
justify-content: space-around;
37+
width: 100%;
38+
}
39+
40+
nav ul li {
41+
margin: 0 10px;
42+
}
43+
44+
nav ul li a {
45+
color: #fff;
46+
text-decoration: none;
47+
font-weight: bold;
48+
}
49+
50+
main {
51+
padding: 2rem;
52+
}
53+
54+
section {
55+
margin-bottom: 2rem;
56+
}
57+
58+
h1, h2 {
59+
margin-bottom: 1rem;
60+
}
61+
62+
footer {
63+
background: #333;
64+
color: #fff;
65+
text-align: center;
66+
padding: 1rem 0;
67+
position: relative;
68+
}
69+
70+
/* Responsive Styles */
71+
@media (max-width: 768px) {
72+
.menu-icon {
73+
display: block;
74+
}
75+
76+
nav ul {
77+
display: none;
78+
flex-direction: column;
79+
width: 100%;
80+
text-align: center;
81+
background: #333;
82+
}
83+
84+
nav ul li {
85+
margin: 10px 0;
86+
}
87+
88+
nav ul.show {
89+
display: flex;
90+
}
91+
}

sw.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)