Weekly Dairy
Weekly Dairy
YEAR: 2022-23
Name of Industry:
Name of Supervisor:
Designation of Supervisor:
Branch of Engineering:
Name of Polytechnic:
Week 1: From: / /2023 to: / /2023
4 lists
Ordered list <ol></ol> Unordered
list <ul></ul>List tag <li></li>
Introduction to Bootstrap.
4 Online-bootstrap:<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
Offline bootstrap: (download bootstrap file and include it in tag)
2 Button class: btn btn-default, btn btn-success, btn btn-danger, btn btn-info, btn btn-
warning, btn btn-link, btn btn-primary.
6 Assignment-Design first website using Header, Article and Footer using Bootstrap
Introduction to JavaScript
1 Applications: To change HTML content, to change CSS object, change HTML object,
Form- validation, etc.
Display Possibilities :
1. Using .innerHTML
2. document. write()
2
3. window. alert()
4. console.log()
Method: document.getElementById();`
1. Change Html content. innerHTML used to
3
change html content.
2. Change CSS content.
style used to change CSS content
Variable:
Used to store values. var used to
5 assign name.
Rules of creating variable.
Data types.
Statements:
2 if, if-else, if…else if
Functions.
Form-validation.
PHP Introduction and
InstallationLocal and Live server
3 Client server architecture
1) Introduction To php and how to download , install and operate Xamppserver.
2) Also run php programs using local host. 3)Structure of
php program and some basicsEx:-<?php
4 $t=date(“H”);
If($t<”20”){
Echo “Have a good day!”;
}
?>
Conditonal Statements in php:
1)if(condition){
Code to be executed if condition is true;
}
5 2) if(condition){
Code to be executed if condition is true
}else{
Code to be executed if condition is false;
}
switch
Loops:
1) While while (condition is true) {
code to be executed;
}
6 2) do while do {
code to be executed;
} while (condition is true);