Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MCA 4/sun/full stack
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

25 changes: 25 additions & 0 deletions MCA 4/sunil/canvas.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Canvas</title>
<style>
canvas{
border: 10px solid black;
}

</style>
</head>
<body>
<canvas id="a" width="300" height="300">
</canvas>
<script>
var canvas=document.getElementById("a");
var can_sol=canvas.getContext("2d");
can_sol.fillStyle = "blue";
can_sol.fillRect(50, 50, 100, 100);
</script>



</body>
</html>
1 change: 1 addition & 0 deletions MCA 4/sunil/demo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions MCA 4/sunil/full stack
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

25 changes: 25 additions & 0 deletions MCA 4/sunil_1951008/canvas.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Canvas</title>
<style>
canvas{
border: 10px solid black;
}

</style>
</head>
<body>
<canvas id="a" width="300" height="300">
</canvas>
<script>
var canvas=document.getElementById("a");
var can_sol=canvas.getContext("2d");
can_sol.fillStyle = "blue";
can_sol.fillRect(50, 50, 100, 100);
</script>



</body>
</html>
1 change: 1 addition & 0 deletions MCA 4/sunil_1951008/full stack
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 2 additions & 0 deletions MCA 4/sunil_1951008/html.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Full stack in software and web application development is used to describe the development process or full cycle development
i.e. from Idea to planning up to design, development, and deployment.