21H41A0429
21H41A0429
• HTML
• CSS
• JAVASCRIP
• REACTJS
Introduction to DevOps
what is DevOps?
A set of practices that combine software development (Dev) and IT operations(Ops) teams. The
goal is to shorten the software development life cycle, improve the quality of software, and deliver
features, updates faster.
Key principle
*Collaboration
*Communication
*Automation
*security
Introduction of html:
Introduction to java script :
Introduction to react js:
Conclusion and next step:
Synergy:
DevOps principles empower frontend development teams to
build and deliver high-quality Peact applications faster.
Continuous Improvement:
Embrace a culture of continuous improvement to optimize
workflows and enhance application quality
Future Trends:
Stay informed about emerging trends in Deves and frontend
technologies to remain competitive
Digital clock using javascript, css,
html
Introduction :
• Create the webpage structure in HTML using a div tag containing dummy
time of time format “HH:MM:SS”.
• Style the page with CSS using elements and classes defined in HTML.
setInterval()
method.
Date()
Example:HTML
<!DOCTYPE html>
<html lang=“en”>
<head>
<meta charset=“UTF-8”>
<meta name=“viewport” content=“width=device-width, initial-
scale=1.0”>
<title>Digital Clock</title>
<link rel=“stylesheet” href=“clock2.css”>
</hea>
<body>
<div id=“clock”>8:10:45</div>
<script src=“clock2.js”></script>
</body>
</html>
Example:javascript
// Calling showTime function at every second
setInterval(showTime, 1000);
• Precise:
• Digital clocks are precise down to the second.