diff --git a/1905360_WT file b/1905360_WT file new file mode 100644 index 0000000..b00f4ec --- /dev/null +++ b/1905360_WT file @@ -0,0 +1,563 @@ +PRACTICAL NO. 1 +EXP- Create a simple web page by writing HTML using a simple text editor, Notepad. Demonstrate the +following components of the web page: + Page titles and Headings + Paragraphs and Inline images +CODE + + + + GURU NANAK DEV ENGINEERING COLLEGE LUDHIANA + +

GNDEC

+

Guru Nanak Dev Engineering College (GNDEC or +GNE Ludhiana) is one of the oldest engineering institutions of the northern region situated at Gill +Park, Ludhiana, Punjab, India.
The foundation stone of the college was laid on 8th April 1956 by Hon'ble Dr. Rajendra Prasad, the first President of India. The college has been named after 1st Sikh Guru +Guru Nanak Dev Ji.

+

CAMPUS

+

College campus is spread over 86 acre of beautiful and +lush green area which is about 5 km from Bus Stand and 8 km from Ludhiana Railway Station on +Ludhiana–Malerkotla Road
Campus has various amenities such as college building, +Auditorium, Girls & Boys hostels, Swimming pool, Sports and Gymnasium Hall Complex, Gurudwara +Sahib, Bank branch, Dispensery, Post Office and Open Air Theatre.

+ + + + +PRACTICAL NO. 2 +EXP- Demonstrate the use of Links, Lists and Tables in HTML. You should be able to link Scheme-2018 +B.Tech (IT) .separate pages and create named links within a document, using them to build a “table of +contents”.CODE + + + + +Links, Lists and Tables + +

GURU NANAK DEV ENGINEERING COLLEGE

+

Guru Nanak Dev Engineering college has a lot of branches like Computer science department , +Information Technology Department and Production Enginering deparment.

+ + + + + + + + + + + + + + + + + + + + +
DepartmentsHead of DepartmentInformation
Computer scienceDr. Parminder SinghComputer +science
Information Technology Dr. Kiran JyotiInformation +Technology
CIVIL EngineeringDr. J.S. GrewalCIVIL +Engineering
+

SUBJECTS OF COMPUTER SCIENCE

+
    +
  • PPLE
  • +
  • CPP
  • +
  • DATA STRUCTURES
  • +
+

SUBJECTS OF INFORMATION TECHNOLOGY

    +
  1. DCLD
  2. +
  3. DCCN
  4. +
  5. DBMS
  6. +
+

SUBJECTS OF CIVIL ENGINEERING

+
    +
  1. ED
  2. +
  3. PHYSICS
  4. +
  5. MATHS
  6. +
+ + + + + PRACTICAL NO. 3 +EXP- Create simple Forms in HTML and demonstrate the use of various form elements like input box, +textarea, submit and radio buttons etc. +CODE + + + +
+
+
+
+Languages 
+
+
+Department 
+Roll number
+Name
+D.O.B + + + + + +
+ + + + + +Password
+Email
+ + + +
+ + + + PRACTICAL NO. 4 +EXP. Demonstrate the use of cascading style sheets (CSS) (inline, internal and external) to specify various +aspects of style, such as colours and text fonts and sizes, in HTML document. +CODE + + + + + + + +
+

BIRD OF INDIA

+
 Peacock
+symbolizes
+New Beginnings
+And
+Eternal Life

TRY TO PROTECT THEM

+ + +PRACTICAL NO. 5 +EXP. Creation of Web pages using HTML5 and CSS3. +CODE + + + + + + Simple web Development Template + + + + + + +
+
+

Web Technology

+

+ HTML stands for HyperText Markup Language. + It is used to design web pages using a markup + language. HTML is the combination of Hypertext + and Markup language. Hypertext defines the + link between the web pages. A markup language + is used to define the text document within tag + which defines the structure of web pages. + HTML is a markup language that is used by the + browser to manipulate text, images, and other + content to display it in the required format. +

+
+
+
+
+
+
+

+ C Programming +

+

+ C is a procedural programming language. It + was initially developed by Dennis Ritchie + as a system programming language to write + operating system. The main features of C + language include low-level access to memory, + simple set of keywords, and clean style, + these features make C language suitable for + system programming like operating system or + compiler development. +

+
+
+ +
+
+

Java

+ +

+ Java has been one of the most popular + programming language for many years. + Java is Object Oriented. However it is + not considered as pure object oriented + as it provides support for primitive + data types (like int, char, etc) The + Java codes are first compiled into byte + code (machine independent code). Then + the byte code is run on Java Virtual + Machine (JVM) regardless of the underlying architecture. +

+
+ +
+ laptop image +
+
+ +
+ +
+ + + + + PRACTICAL NO. 6 +EXP. Demonstrate the use of bootstrap framework +CODE + + +Bootstrap Example + + + + + + + +
+ +
+
+ +
+
+
+
+
+
+
+ +
+ + + + + + + + PRACTICAL NO. 7EXP. Creating a web page using php +CODE +'Title for Home page', +'description'=>'Here add the description for Home page', +'keywords'=>'meta keywords, for, home page' +); +$pgdata['about_me'] = array( +'title'=>'Title for About Me page', +'description'=>'Description for About Me, https://coursesweb.net', +'keywords'=>'about me, https://coursesweb.net' +); +$pgdata['images'] = array('title'=>'Title for Images', +'description'=>'Here add the description for the page with images', +'keywords'=>'images, pictures, photo' +); +// set the page name +$pgname = isset($_GET['pg']) ? trim(strip_tags($_GET['pg'])) : 'index'; +// get title, and meta data for current /accessed page +$title = $pgdata[$pgname]['title']; +$description = $pgdata[$pgname]['description']; +$keywords = $pgdata[$pgname]['keywords']; +// set header for utf-8 encode +header('Content-type: text/html; charset=utf-8'); +?> + + + +<?php echo $title; ?> + + + + + + + +
+
+
+ + +