-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from JeelDobariya38/dev
add template files for other languages
- Loading branch information
Showing
16 changed files
with
469 additions
and
989 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# the ide defualt folder | ||
.vscode/ | ||
.vscode/ | ||
*.code-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>C-lang | Coding Notes</title> | ||
<link rel="stylesheet" href="../../Prism/prism.css"> | ||
<script src="../../Prism/prism.js"></script> | ||
<link rel="stylesheet" href="../../Stylesheets/utils.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/style.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/language.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/clang.css"> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="heading"> | ||
<a href="../../index.html"><h1>Coding Notes</h1></a> | ||
</div> | ||
<div class="navigation-bar"> | ||
<a href="../python/python.html">Python</a> | ||
<a href="../java/java.html">Java</a> | ||
<a href="../cpp/cpp.html">C++</a> | ||
<a href="../clang/clang.html">C-Lang</a> | ||
</div> | ||
</header> | ||
</body> | ||
<script src="../../Scripts/script.js"></script> | ||
<script src="../../Scripts/language.js"></script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>C++ | Coding Notes</title> | ||
<link rel="stylesheet" href="../../Prism/prism.css"> | ||
<script src="../../Prism/prism.js"></script> | ||
<link rel="stylesheet" href="../../Stylesheets/utils.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/style.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/language.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/cpp.css"> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="heading"> | ||
<a href="../../index.html"><h1>Coding Notes</h1></a> | ||
</div> | ||
<div class="navigation-bar"> | ||
<a href="../python/python.html">Python</a> | ||
<a href="../java/java.html">Java</a> | ||
<a href="../cpp/cpp.html">C++</a> | ||
<a href="../clang/clang.html">C-Lang</a> | ||
</div> | ||
</header> | ||
</body> | ||
<script src="../../Scripts/script.js"></script> | ||
<script src="../../Scripts/language.js"></script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Java | Coding Notes</title> | ||
<link rel="stylesheet" href="../../Prism/prism.css"> | ||
<script src="../../Prism/prism.js"></script> | ||
<link rel="stylesheet" href="../../Stylesheets/utils.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/style.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/language.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/java.css"> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="heading"> | ||
<a href="../../index.html"><h1>Coding Notes</h1></a> | ||
</div> | ||
<div class="navigation-bar"> | ||
<a href="../python/python.html">Python</a> | ||
<a href="../java/java.html">Java</a> | ||
<a href="../cpp/cpp.html">C++</a> | ||
<a href="../clang/clang.html">C-Lang</a> | ||
</div> | ||
</header> | ||
</body> | ||
<script src="../../Scripts/script.js"></script> | ||
<script src="../../Scripts/language.js"></script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Python | Coding Notes</title> | ||
<link rel="stylesheet" href="../../Prism/prism.css"> | ||
<script src="../../Prism/prism.js"></script> | ||
<link rel="stylesheet" href="../../Stylesheets/utils.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/style.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/language.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/python.css"> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="heading"> | ||
<a href="../../index.html"><h1>Coding Notes</h1></a> | ||
</div> | ||
<div class="navigation-bar"> | ||
<a href="../python/python.html">Python</a> | ||
<a href="../java/java.html">Java</a> | ||
<a href="../cpp/cpp.html">C++</a> | ||
<a href="../clang/clang.html">C-Lang</a> | ||
</div> | ||
</header> | ||
</body> | ||
<script src="../../Scripts/script.js"></script> | ||
<script src="../../Scripts/language.js"></script> | ||
</html> |
Oops, something went wrong.