-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (104 loc) · 4.05 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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Code Chronicles</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Free software development tutorials">
<meta name="keywords" content="C#, .Net, JavaScript">
<meta name="author" content="Naser khoshfetrat">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/stylesheet.css" type="text/css" />
</head>
<body>
<!--HEADER-->
<div class="header" id="header" >
<div id="logo">
<h1><a href="#">Code Chronicles</a></h1>
</div>
<div id="nav-bar">
<ul id="nav1">
<li><a href="#">Home</a></li>
</ul>
<div id="nav2">
</div>
</div>
</div>
<!--HEADER END-->
<!--CONTENT-->
<div id="content">
<!--MAIN-CONTENT-->
<div id="main-content">
<!--CONTENT 1 END-->
<div class="content" id="content-1">
<div class="featured wrapper">
<h2><a href="#">Crucial Git Commands</a></h2>
<img class="cover featured-img" src="./img/Git-Logo-1788C.png" alt="git logo" />
<p>Git is a powerful version control system that allows you to track changes and collaborate with others on
your projects. Here are some crucial Git commands you should know. <span class="more">
<a href="./page/CrucialGitCommands.html">Read more</a></span>
</p>
<div class="featured-meta bottom">
<p> <span class="post-date">05/29/24</span> </p>
</div>
</div>
<!-- <div class="odd-post">
<div class="post-header">
<h3><a href="#">Tips for Getting Enums part 1</a></h3>
<span class="category"><a href="#">Enums Tips</a></span> </div>
<p></p>
<div class="post-meta">
<p> <span class="post-date">05/29/24</span> </p>
</div>
</div>
<div class="even-post">
<div class="post-header">
<h3><a href="#">Tips for Getting Enums. part 2</a></h3>
<span class="category"><a href="#">Enums Tips & validation</a></span> </div>
<p></p>
<div class="post-meta">
<p> <span class="post-date">05/29/24</span> </p>
</div>
</div> -->
<div class="clear"></div>
</div>
<!--CONTENT 1 END-->
<!--SIDEBAR-->
<div id="sidebar">
<h4>Posts</h4>
<ul class="popular-posts">
<li><a href="./page/CrucialGitCommands.html">Crucial Git Commands</a></li>
</ul>
<h4>About Me</h4>
<p class="about-me"> As a passionate and dedicated software developer, I have been working in the field of
software development since 2010. With a strong foundation in computer science and a deep understanding of
ASP.NET technology, I have developed a unique ability to design and implement robust, scalable, and efficient
web applications.</p>
<h4>Find me on :</h4>
<li><a href="https://www.linkedin.com/in/naserkhoshfetrat/">Linkedin</a></li>
</ul>
</div>
<!--SIDEBAR END-->
</div>
<!--MAIN CONTENT END-->
<!--FOOTER-->
<div class="footer" id="footer">
<div id="footer-content">
<p id="footer-text"> Copyright © 2024 <a href="#">Naser khoshfetrat</a> - All Rights Reserved.<br />
</div>
</div>
<!--FOOTER END-->
</div>
<!--CONTENT END-->
<!--CUFON-->
<script type="text/javascript" src="./js/cufon-yui.js"></script>
<script type="text/javascript" src="./js/Gentium_Basic.font.js"></script>
<script type="text/javascript" src="./js/Bambi_Bold_400.font.js"></script>
<script type="text/javascript">
Cufon.replace('h1', { fontFamily: 'Bambi Bold' });
Cufon.replace('h2', { fontFamily: 'Gentium Basic' });
Cufon.replace('h3', { fontFamily: 'Gentium Basic' });
</script>
<script type="text/javascript"> Cufon.now(); </script>
<!--CUFON END-->
</body>
</html>