Skip to content

Commit

Permalink
js şile ekrana yazı yazdırma şekilleri
Browse files Browse the repository at this point in the history
  • Loading branch information
ObsidianH22 committed Jul 10, 2023
1 parent 483d99c commit bd07bb2
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ <h4 class="card-title myHeading">Blog-1</h4>

<!-- external JavaScript -->
<script src="templete.js"></script>

</body>

</html>
6 changes: 6 additions & 0 deletions js/tutorials.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
console.log("test");
console.info("info");
console.warn("warn");
console.error("error");

document.writeln("test");
33 changes: 33 additions & 0 deletions tutorials.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!doctype html>
<html lang="en">

<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS v5.2.1 -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">

</head>

<body>

<h3 class="text-center text-primary text display-4">js</h3>


<!-- Bootstrap JavaScript Libraries -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous">
</script>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous">
</script>

<script src="js/tutorials.js"></script>
</body>

</html>

0 comments on commit bd07bb2

Please sign in to comment.