Sei sulla pagina 1di 54

PROJECT REPORT

ON

Fashion Designing

CREATED BY

Simrat singh

1
CONTENTS

Sr. No. Title


1. Title Page
2. Certificate
3. Acknowledgment
4. Introduction to Project
5. Platform Used
6. Front End and Back End
7. Installation Requirement
8. Table Structure of php
10. Coding

2
CERTIFICATE

This is to be certified that this is a bonafied record of the project work


(Title: Online Shopping) using php satisfactory at HARTRON
WORKSTATION, AMBALA CITY.

Submitted by

Registration no Name

5763 simrat singh

SIGNATURE OF CANDIDATE

PROJECT IN-CHARGE
BARKHA
(MCA)

3
ACKNOWLEDMENT

We are the student of WEB TECHNOLOGY from HARTRON


WORKSTATION , AMBALA CITY and made my project under them. we
got the full co-operation by them. They gave us computer and guide us time-to-
time in my project. we are greatly thankful to Mrs. Barkha for her support and
encouragement.

The environment of HARTRONWORKSTATION, AMBALA CITY is very


enjoyable and friendly. We are confident that HARTRON WORKSTATION
will help the student to face their current challenge as well as the future
challenges in life.

4
INTRODUCTION TO PROJECT

Project Report/Essay on Fashion : WHAT IS FASHION ?

Fashion may be defined as way of living, dressing, decorating etc. which are popular today,
but which are popular today, but which would soon loose their Popularity. It is somethings
passing & transitory, a mere craze of the moment to be looked down upon with contempt. For
example, tight pants are the fashion today, but only a short wise ago broad loose pant were
the order of the day. If today a man appear is Society wearing Broad pants, he would be help
up to ridicule, by only a few year ago they were the height of fashion, symbol of good haste
& culture.

Project Report Fashion Designing :


Fashion designing has been a super specialty. It is a lucrative profession too. Garments are
designed to go with every man of the individuals & to fit in every occasion of life. There
have to be specially designed out firs her swimming & for other sports like tennis, footballs
& athletics.

Fashion designers have expensive models to market their apparels. This practice gives a great
Phillip to health care & body fitness models have to keep themselves in shape by bodily
exercise and workouts. Fashion modeling has generated a great enthusiasm among children &
yours people for Physical fitness. This is a great gain to the human society.

S.No. Name of Place in India Percentage


1 Kolkata 75%
2 Mumbai 85%
3 Delhi 80%
4 Bangalore 50%
5 Patna 50%

5
PLATFORM USED

WINDOW 7
Whether it is to be used as a workstation operating system or a server operating
system, the Window7 operating system has some quite attractive features.
Lets take a look at some of the features that make Window7 workstation stand
out from competition.

FEATURES:-
Architecture Independence.
Multi Processor Support.
Multithreaded Multitasking.
Massive Memory Space.
Enhance Metafile Printing.

6
FRONT END & BACK END
PHP started out as a small open source project that evolved as more and more people found
out how useful itwas. Rasmus Lerdorf unleashed the first version of PHP way back in 1994.
PHP is a recursive acronym for "PHP: Hypertext Preprocessor".

PHP is a server side scripting language that is embedded in HTML. It is used to


manage dynamic content, databases, session tracking, even build entire e-commerce
sites.

It is integrated with a number of popular databases, including MySQL, PostgreSQL,


Oracle, Sybase, Informix, and Microsoft SQL Server.

PHP is pleasingly zippy in its execution, especially when compiled as an Apache


module on the Unix side. The MySQL server, once started, executes even very
complex queries with huge result sets in record-setting time.

PHP supports a large number of major protocols such as POP3, IMAP, and LDAP.
PHP4 added support for Java and distributed object architectures (COM and
CORBA), making n-tier development a possibility for the first time.

PHP is forgiving: PHP language tries to be as forgiving as possible.

PHP Syntax is C-Like.

Characteristics of PHP
Five important characteristics make PHP's practical nature possible:

Simplicity

Efficiency

Security

Flexibility

Familiarity

Most common tag is the <?php...?> and we will also use same tag in our tutorial.
From the next chapter we will start with PHP Environment Setup on your machine and then
we will dig out almost all concepts related to PHP to make you comfortable with the PHP
language.
In order to develop and run PHP Web pages three vital components need to be installed on
your computer system.
Web Server - PHP will work with virtually all Web Server software, including Microsoft's
Internet Information Server (IIS) but then most often used is freely available Apache Server.

7
Database- PHP will work with virtually all database software, including Oracle and Sybase
but most commonly used is freely available MySQL database.
PHP Parser - In order to process PHP script instructions a parser must be installed to
generate HTML output that can be sent to the Web Browser.

PHP Variable Types


The main way to store information in the middle of a PHP program is by using a variable.
Here are the most important things to know about variables in PHP.
All variables in PHP are denoted with a leading dollar sign ($).

The value of a variable is the value of its most recent assignment.

Variables are assigned with the = operator, with the variable on the left-hand side and
the expression to be evaluated on the right.

Variables can, but do not need, to be declared before assignment.

Variables in PHP do not have intrinsic types - a variable does not know in advance
whether it will be used to store a number or a string of characters.

Variables used before they are assigned have default values.

PHP does a good job of automatically converting types from one to another when
necessary.

PHP has a total of eight data types which we use to construct our variables:
Integers:are whole numbers, without a decimal point, like 4195.

Doubles:are floating-point numbers, like 3.14159 or 49.1.

Booleans:have only two possible values either true or false.

NULL:is a special type that only has one value: NULL.

Strings:are sequences of characters, like 'PHP supports string operations.'

Arrays:are named and indexed collections of other values.

Objects:are instances of programmer-defined classes, which can package up both


other kinds of values and functions that are specific to the class.

Resources:are special variables that hold references to resources external to PHP


(such as database connections).

The first five are simple types, and the next two (arrays and objects) are compound -
the compound types can package up other arbitrary values of arbitrary type, whereas
the simple types cannot.

8
We will explain only simile data type in this chapters. Array and Objects will be
explained separately.
PHP GET and POST Methods
There are two ways the browser client can send information to the web server.
The GET Method

The POST Method


Before the browser sends the information, it encodes it using a scheme called URL encoding.
In this scheme, name/value pairs are joined with equal signs and different pairs are separated
by the ampersand.
name1=value1&name2=value2&name3=value3
Spaces are removed and replaced with the + character and any other nonalphanumeric
characters are replaced with a hexadecimal values. After the information is encoded it is sent
to the server.
The GET Method
The GET method sends the encoded user information appended to the page request. The page
and the encoded information are separated by the ?character.
http://www.test.com/index.htm?name1=value1&name2=value2
The GET method produces a long string that appears in your server logs, in the
browser's Location: box.
The GET method is restricted to send upto 1024 characters only.
Never use GET method if you have password or other sensitive information to be sent
to the server.
GET can't be used to send binary data, like images or word documents, to the server.
The data sent by GET method can be accessed using QUERY_STRING environment
variable.
The PHP provides $_GET associative array to access all the sent information using
GET method.

The POST Method


The POST method transfers information via HTTP headers. The information is encoded as
described in case of GET method and put into a header called QUERY_STRING.
The POST method does not have any restriction on data size to be sent.
The POST method can be used to send ASCII as well as binary data.
The data sent by POST method goes through HTTP header so security depends on HTTP
protocol. By using Secure HTTP you can make sure that your information is secure.
The PHP provides $_POST associative array to access all the sent information using GET
method.
The $_REQUEST variable

9
The PHP $_REQUEST variable contains the contents of both $_GET, $_POST, and
$_COOKIE. We will discuss $_COOKIE variable when we will explain about cookies.
The PHP $_REQUEST variable can be used to get the result from form data sent with
both the GET and POST methods.
The include() Function
The include() function takes all the text in a specified file and copies it into the file that
uses the include function. If there is any problem in loading a file then the include()
function generates a warning but the script will continue execution.

Assume you want to create a common menu for your website. Then create a file
menu.php with the following content.

<?php Menu are here; ?>

Now create as many pages as you like and include this file to create header. For example
now your test.php file can have following content.

<html>
<body>
<?php include("menu.php"); ?>
<p>This is an example to show how to include PHP file!</p>
</body>
</html>


The require() Function
The require() function takes all the text in a specified file and copies it into the file that
uses the include function. If there is any problem in loading a file then the require()
function generates a fatal error and halt the execution of the script.

So there is no difference in require() and include() except they handle error conditions. It
is recommended to use the require() function instead of include(), because scripts should
not continue executing if files are missing or misnamed.

You can try using above example with require() function and it will generate same result.
But if you will try following two examples where file does not exist then you will get
different results.

10
INSTALLATION REQUIREMENT

RAM -1GB
PROCESSER -P2 OR CELERON
OPERATING SYSTEM -WINDOW 7
SERVER -WAMP
HARD DISK -2 GB

11
TABLE STRUCTURE OF MYSQL

12
Coding
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=utf-8" />
<title>home</title>
</head>
<link rel="stylesheet" type="text/css" href="cssfile.css" />
<body background="website/wallpaper/girly-
wallpapers5.jpg">

<ul>
<li class<="mar1"><a href='home2.php'>Home</a></li>
<li><a href='aboutus.php'>About us</a></li>
<li><a href='course.php'>Course Offered</a></li>

13
<li><a href='media.php'><div class="mar">Media</a></li>
<li><a class="head" href='celefaculty.php'>faculty</a></li>
<li><a class="head" href="Applyform.php">Apply
now</div></a></li>
</ul></div>
<div class="logo">
<img src="website/images/fashionista-logo.jpg" /></div>
<div class="news"></div>
<div class="logo2"><div class="img">
<img src="website/images/home-news.jpg" /></div></div>
<div class="new">
<img src="website/testimonials.jpg" /></div>
<div class="new2">
<img src="website/images/assignmentsj.jpg" /></div>
<div class="img2"><center>
<img
src="website/wallpaper/lanvin_ss10_01_fashion_week_runwa
y_catwalk_hd-wallpaper-oDhr.jpg" height="400px"
width="850px" /></center></div>

<div class="marquee2">
<marquee bgcolor="#FFFFFF" direction="left"
behavior="slide" align="right" height="150px" loop="20"
scrollamount="10"><img src="website/images/guess.jpg"
height="80px" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/allen solly.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/arrow.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/cobb.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/debenhams.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img

14
src="website/images/firra.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/levies.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/louis philippe.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/montaigne.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/nautica.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/puma.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img
src="website/images/planet.jpg"/></marquee></div>
<div class="brandtag">
<img src="website/top-brand.jpg" height="150px" /></div>
<div class="contact">
<div class="text">
<h1 >contact us</h1>

<p style="color:#F00;">CHANDIGARH</p><br />


<p > sector-34, Tribune chowk</p>
<p>S.A.S nagar Mohali</p>

<p>chandigarh-160017</p><br />
<p><b>Phone no.</b>:011 - 41640022
</p>
<p><b>E-MAIL</b>--fashioninsta@gmail.com</p>
<br /><br />
<P>for careers: <u>www.fashioninstacareers.com</u>
</P>

<div class="img3">

15
<img
src="website/images/f3c7e52200bfc27be9380a2e6fddd68c.jp
g" height="500px" width="400px" /></div>
<div class="text2" >

<img
src="website/images/11.Design_Showcase_2016_sz811j.jpg"
height="200px" width="334px" />
&nbsp;&nbsp;&nbsp;<img
src="website/images/14.Fashion_Wokshop_ajm2lv.jpg"
height="200px" width="334px" />&nbsp;&nbsp;&nbsp;<img
src="website/images/5.Graphic_Design_Workshop_r7gfbl.jpg
" height="200px" width="335px"
/>&nbsp;&nbsp;&nbsp;<img
src="website/images/F06A1032_ayf8l1.jpg" height="200px"
width="338px"
/> </div> <br />

<div class="text3"><br />


<h1
style="color:#F00"><center>Testimonials</h1></center>

<marquee bgcolor="#FFFFFF" align="right"


behavior="scroll" direction="left to center " loop="20"
scrollamount="25" onmouseover="this.stop();"
onmouseout="this.start();">
<img src="website/images/clothes/slide1.jpg"
>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<img
src="website/_notes/slide2.jpg.mno"/>&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<img src="website/_notes/slide3.jpg.mno" /></marquee>

16
<div class="footer">
<br /><br /><br /><hr />
<div class="footertext">
<div class="text5">
<P><center> <a href='home2.php'>TOP </a></center></P>
</div>
</div>
</body>
</html>

Coding
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

17
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"
/>
<title>course</title>
</head>
<link rel="stylesheet" type="text/css" href="cssfile.css" />
<body bgcolor="#FFFFFF">

<ul>
<li class<="mar1"><a href='home2.php'>Home</a></li>
<li><a href='aboutus.php'>About us</a></li>
<li><a href='course.php'>Course Offered</a></li>
<li><a href='media.php'><div class="mar">Media</a></li> <li><a
class="head" href='celefaculty.php'>faculty</a></li>
<li><a class="head" href="Applyform.php">Apply
now</div></a></li>
</ul></div>
<div class="logo">
<img src="website/images/fashionista-logo.jpg" /></div>
<div class="news"></div>
<div class="logo2"><div class="img">
<img src="website/images/home-news.jpg" /></div>
<div class="new">
<img src="website/testimonials.jpg" /></div>
<div class="new2">
<img src="website/images/assignmentsj.jpg" /></div>
<br /><br /> <br /><br /><br /><hr />
<div class="course">
<p><center><B>Fashion Design</B></center></p>
</div><br /><br />
<div class="coursename"><center>
<p style="font-size:24px"><a
href='diplomacourse.php'</a>Diploma</p></center></div>
<div class="imgname">

"<img src="website/images/clothes/Fasion-st-nu-263x250.jpg"
height="200px" width="200px"/> </div>
<div class="coursename2"><center>

18
<p style="font-size:24px"><a href='advanced1.php'</a>Advanced
Diploma</p></center></div>
<div class="imgname2">
<img src="website/images/11.Design_Showcase_2016_sz811j.jpg"
height="200px" width="200" /></div>
<div class="coursename3"><center>
<p style="font-size:24px"><a href='undergraduate.php'</a>Under
Graduate</p></center></div>
<div class="imgname3">
<img src="website/images/5.Graphic_Design_Workshop_r7gfbl.jpg"
height="200px" width="200px" /></div>
<div class="coursename4"><center>
<p style="font-size:24px"><a href='weekend.php'</a>Weekend
Diploma</p></center></div>
<div class="imgname4">
<img src="website/images/F06A1032_ayf8l1.jpg" height="200px"
width="200px" /></div>

<br /><br /><br /><br /><br /><br /><br /><hr />


<div class="course2">
<p><center><B>Graphic web Design</B></center></p></div><br
/><br /><br /><br />
<div class="coursename5"><center>
<p style="font-size:24px"><a
href='Diploma2.php'</a>Diploma</p></center></div>
<div class="imgname5">
<img src="website/images/thriftshop_rainbowrounders.jpg"
height="200px" width="200px" /></div>
<div class="coursename6"><center>
<p style="font-size:24px"><a href='Undergraduate2.php'</a>under
graduate</p></center></div>
<div class="imgname6">
<img
src="website/images/4c9150b318107198467c21a6b8a0e6b0.jpg"
height="200px" width="200px" /></div>
<div class="coursename7"><center>

19
<p style="font-size:24px"><a
href='Weekenddiploma2.php'</a>weekend
diploma</p></center></div>
<div class="imgname7">
<img
src="website/images/8bfe28b7013198f069e0bc21dc1e6928.jpg"
height="200px" width="200px" /></div>
<div class="coursename8"><center>
<p style="font-size:24px"><a
href='Advancediploma2.php'</a>Advanced
diploma</p></center></div>
<div class="imgname8">
<img src="website/wallpaper/8bt6TbY.jpg" height="200px"
width="200px" /></div><br />

<div class="marquee"><br />


<h1 style="color:#F00"><center>Testimonials</h1></center>

<marquee bgcolor="#FFFFFF" align="right" behavior="scroll"


direction="left to center " loop="20" scrollamount="25"
onmouseover="this.stop();"
onmouseout="this.start();">
<img src="website/images/clothes/slide1.jpg"
>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<img src="slide2.jpg"
/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<img src="slide3.jpg" /></marquee></div>
<div class="footer">
<br /><br /><br /><hr />
<div class="footertext">
<div class="text5">
<P><center> <a href='course.php'>TOP</a></center></P>
</div>
</div>

20
</body>
</html>

Coding
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"
/>
<title>apply form </title>
</head>
<link rel="stylesheet" type="text/css" href="cssfile.css" />
21
<body bgcolor="#FF99CC">

<ul>
<li class<="mar1"><a href="">Home</a></li>
<li><a href="#about us">About us</a></li>
<li><a href="courseoffered">Course offered</a></li>
<li><a href="media"><div class="mar">Media</a></li> <li><a
class="head" href="#faculty">faculty</a></li>
<li><a class="head" href="Applyform.php">apply
now</div></a></li>
</ul></div>
<div class="logo">
<img src="website/images/fashionista-logo.jpg" /></div>
<div class="news"></div>
<div class="logo2"><div class="img">
<img src="website/images/home-news.jpg" /></div></div>
<div class="new">
<img src="website/testimonials.jpg" /></div>
<div class="new2">
<img src="website/images/assignmentsj.jpg" /></div>
<br />
<div class="form">
<form action="applyform1.php" method="post"><center>
First Name</label>
<input type="text" name="fn" placeholder="your name.." />
Last Name</label>
<input type="text" name="ln" placeholder="your name.." /><br
/><br /><br />
Father name</label>
<input type="text" name="fan" placeholder="name.." />
Contect no.</label>
<input type="text" name="cn" placeholder="your number.." /><br
/><br /><br />
Gender</label> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

<input type="radio" name="g1" value="male" checked> Male


&nbsp; &nbsp; &nbsp; &nbsp;

22
<input type="radio" name="g1" value="female"> Female &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<lable for="E-mail">E-mail</label>
<input type="text" name="em" placeholder="your e-mail address.."
/><br /><br /><br />
<lable for="add">Address</label>
<input type="text" name="add" placeholder="your address.." />
<lable for="cit">City</label>
<input type="text" name="ct" placeholder="your City.."
/></center>
<center> <input type="submit" value="submit"
name="sub"/></center>

</select>
</form>
</div>

Coding

23
<!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8" />
<title>apply form </title>
</head>
<link rel="stylesheet" type="text/css"
href="fashion designing/cssfile.css" />
<body bgcolor="#FF99CC">

<ul>
<li class<="mar1"><a href="fashion
designing/home2.php">Home</a></li>
<li><a href="fashion
designing/aboutus.php">About us</a></li>
<li><a href="fashion
designing/course.php">Course offered</a></li>
<li><a href="media.php"><div
class="mar">Media</a></li>
<li><a class="head" href="fashion
designing/celefaculty.php">faculty</a></li>

24
<li><a class="head" href="fashion
designing/Applyform.php">apply
now</div></a></li>
</ul></div>
<div class="logo">
<img src="fashion
designing/website/images/fashionista-logo.jpg"
/></div>
<div class="news"></div>
<div class="logo2"><div class="img">
<img src="fashion
designing/website/images/home-news.jpg"
/></div></div>
<div class="new">
<img src="fashion
designing/website/testimonials.jpg" /></div>
<div class="new2">
<img src="fashion
designing/website/images/assignmentsj.jpg"
/></div>
<br />
<div class="formdesign"><center>
<h1 style="font-size:76px">
<?php
mysql_connect("localhost","root","")or
die(mysql_error());

25
mysql_select_db("fashion")or die(mysql_error());

$fn=$_POST['fn'];
$ln=$_POST['ln'];
$fan=$_POST['fan'];
$cn=$_POST['cn'];
$g=$_POST['g1'];

$e=$_POST['em'];
$ad=$_POST['add'];
$c=$_POST['ct'];
mysql_query("insert into student
values('$fn','$ln','$fan','$cn','$g','$e','$ad','$c')")or
die (mysql_error());
echo "welcome to fashionista
school";

?>

</h1></center>
</div>
</body>
</html>

26
Coding
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"
/>
<title>Celefaculty</title>
</head>
<link rel="stylesheet" type="text/css" href="cssfile.css" />
<body background="website/wallpaper/girly-wallpapers5.jpg">

<ul>
<li class<="mar1"><a href="">Home</a></li>
<li><a href="#admission">admission</a></li>
<li><a href="courseoffered">Course offered</a></li>
<li><a href="media"><div class="mar">Media</a></li> <li><a
class="head" href="#faculty">faculty</a></li>
<li><a class="head" href="Applyform.php">apply
now</div></a></li>
</ul></div>
27
<div class="logo">
<img src="website/images/fashionista-logo.jpg" /></div>
<div class="news"></div>
<div class="logo2"><div class="img">
<img src="website/images/home-news.jpg" /></div></div>
<div class="new">
<img src="website/testimonials.jpg" /></div>
<div class="new2">
<img src="website/images/assignmentsj.jpg" /></div>
<div class="cele">
<img src="website/face-bg.jpg" height="1330px" width="1000px" />
</div>
<div class="celefaculty">
<h1>Celeb Faculty& Advisory Panel</h1>
<img src="website/faculty img/rd.jpg" width="100PX"
style="margin-left:-100px"/>
<h2 style="margin-top:-100PX">Rahul Dutta</h2>
<p>One of Delhis most prominent fashion photographers, Rahul
Dutta is equally at home, as in the realms of fashion, advertising &
style. Fashion<br /> pageant winners for 2006 viz. Grasim Mr.India,
Ponds Miss India & Gladrags Megamodel are Rahuls portfolios and
discoveries. No wonder<br /> why he is called The Portfolio Guru.
He has managed to carve a niche for himself in the industry and
works with known brands like<br /> Bata Monte Carlo, Hyundai and
Nokia, to name a few.</p>&nbsp;&nbsp; <BR />
<img src="website/faculty img/punam1.jpg" style="margin-left:-
100PX" width="100PX" />
<h2 style="margin-top:-100PX">Punam Kalra</h2>
<p>Punam Kalra, a renowned interior designer. Im Centre for
Applied Arts was established by her in the year 1994. A complete
knowledge of materials,<br /> technical capability, zeal to
continuously innovate and revolutionize design and ability to set
trends has established her studio.</p>&nbsp;&nbsp;<BR /><BR
/><BR />

<img src="website/faculty img/rahul-popli.jpg"width="100PX"


style="margin-left:-100PX" />

28
<h2 style="margin-top:-100PX">Rahul Popli</h2>
<p>Rahul labeled his passion by the name of Amethyst. His line of
Hyderabadi Jewelry is characterized by intricate designs, beautiful
semi - precious <br />stones set in gold plated silver. Also his
Victorian Collection is a fabulous merger of the ethnic flair and
modern design.</p>&nbsp;&nbsp;<BR /><BR /><BR />
<img src="website/faculty img/pooja.jpg" width="100PX"
style="margin-left:-100PX" />
<h2 style="margin-top:-100PX">Pooja Mahajan Kalsia</h2>
<p>Pooja Mahajan Kalsia, a fashion stylist has designed the course on
soft skills will be taking care of sprucing persona, grooming,
etiquettes and other <br />intellects in our students. She has not only
modulated the course but has also transformed the life of many of our
students.</p>&nbsp;&nbsp;<BR /><BR /><BR />
<img src="website/faculty img/bharat.jpg" width="100PX"
style="margin-left:-100PX"/>
<h2 style="margin-top:-100PX">Bharat & Reshma</h2>
<p>Bharat & Reshma Grover forayed into the fashion industry in
2006 with their formal wear collection for men and with the sale
objective of bringing<br /> about revolutionary change in wedding
wear.</p>&nbsp;&nbsp;<BR /><BR /><BR />
<img src="website/faculty img/pa.jpg" width="100PX"
style="margin-left:-100PX"/>
<h2 style="margin-top:-100PX">Pradeepp Arora</h2>
<p>Fashion, which always pulled Mr. Arora like a magnet. He has
worked with the international brands, which are one of the best names
of the apparel<br /> trade. Groggy, the name familiar to todays
youngsters is the venture by Mr. Pradeepp
Arora.</p>&nbsp;&nbsp;<BR /><BR /><BR />
<img src="website/faculty img/umair-zafar.jpg" width="100px"
style="margin-left:-100px" />
<h2 style="margin-top:-100px">Umair Zafar</h2>
<p>A well-known Mumbai based Fashion Designer having an
experience of ten years of working in India & International market,
catering to various<br /> segments like designing for Bollywood
films, music videos and retailing to high end fashion conscious
clientele.</p>&nbsp;&nbsp;<br /><br /><br />

29
<img src="website/faculty img/Vanica-Chabra.jpg" width="100px"
style="margin-left:-100px" />
<h2 style="margin-top:-100px">Vanica Chabra</h2>
<p>An alumni of Fashionista School making her presence felt in the
fashion world, she possess a brand by the name Katran - The Design
Studio, to her<br /> achievement. The institute, spotting her talent
early had awarded her with the budding designer award in Fashionista
Fashion Festival.</p>&nbsp;&nbsp; </div><br /><br />

<div class="footer">
<br /><br /><br /><hr />
<div class="footertext">
<div class="text5">
<P><center>TOP</center></P>
</div>
</div>

30
Coding
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
31
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"
/>
<title>media </title>
</head>
<link rel="stylesheet" type="text/css" href="cssfile.css" />
<body background="media img/ronit-bg.jpg">

<ul>
<li class<="mar1"><a href='home2.php'>Home</a></li>
<li><a href='aboutus.php'>About us</a></li>
<li><a href='course.php'>Course Offered</a></li>
<li><a href='media.php'><div class="mar">Media</a></li> <li><a
class="head" href='celefaculty.php'>faculty</a></li>
<li><a class="head" href="Applyform.php">Apply
now</div></a></li>
</ul></div>
<div class="logo">
<img src="website/images/fashionista-logo.jpg" /></div>
<div class="news"></div>
<div class="logo2"><div class="img">
<img src="website/images/home-news.jpg" /></div></div>
<div class="new">
<img src="website/testimonials.jpg" /></div>
<div class="new2">
<img src="website/images/assignmentsj.jpg" /></div>
<br />

<div class="mgallery">
<h1>Photo Gallery</h1>
<p>Our Photo Gallery consists of photos and an archive of our events
/ news stories</p>

<img src='website/media img/1.jpg' height="250px" width="250" />


<img src="website/media img/1e3r.jpg" height="250px" width="250"
style="margin-left:28px" />

32
<img src="website/media img/1tyr.jpg" height="250px" width="250"
style="margin-left:30px" />
<img src="website/media img/2.jpg" height="250px" width="250"
style="margin-left:30px" />

<img src="website/media img/5.jpg" height="250px" width="250" />


<img src="website/media img/7.jpg" height="250px" width="250"
style="margin-left:28px" />
<img src="website/media img/11.jpg" height="250px" width="250"
style="margin-left:30px" />
<img src="website/media img/12.jpg" height="250px" width="250"
style="margin-left:30px" />

<img src="website/media img/13.jpg" height="250px" width="250"


/>
<img src="website/media img/15.jpg" height="250px" width="250"
style="margin-left:28px" />
<img src="website/media img/21.jpg" height="250px" width="250"
style="margin-left:30px" />
<img src="website/media img/22.jpg" height="250px" width="250"
style="margin-left:30px" />

<img src="website/media img/23.jpg" height="250px" width="250"


/>
<img src="website/media img/24.jpg" height="250px" width="250"
style="margin-left:28px" />
<img src="website/media img/27.jpg" height="250px" width="250"
style="margin-left:30px" />
<img src="website/media img/28.jpg" height="250px" width="250"
style="margin-left:30px" />

<img src="website/media img/29.jpg" height="250px" width="250"


/>

33
<img src="website/media img/31.jpg" height="250px" width="250"
style="margin-left:28px" />
<img src="website/media img/43.jpg" height="250px" width="250"
style="margin-left:30px" />
<img src="website/media img/44.jpg" height="250px" width="250"
style="margin-left:30px" />

<img src="website/media img/56.jpg" height="250px" width="250"


/>
<img src="website/media img/189.jpg" height="250px" width="250"
style="margin-left:28px" />
<img src="website/media img/100.jpg" height="250px" width="250"
style="margin-left:30px" />
<img src="website/media img/106.jpg" height="250px" width="250"
style="margin-left:30px" />

<img src="website/media img/102.jpg" height="250px" width="250"


/>
<img src="website/media img/103.jpg" height="250px" width="250"
style="margin-left:28px" />
<img src="website/media img/104.jpg" height="250px" width="250"
style="margin-left:30px" />
<img src="website/media img/105.jpg" height="250px" width="250"
style="margin-left:30px" />

</div>

<div class="footer">

34
<br /><br /><br /><hr />
<div class="footertext">
<div class="text5">
<P><center><a href="media.php">TOP</a></center></P>
</div>
</div>

</body>
</html>

CSS CODING

.head{
font-family:Georgia, "Times New Roman",
Times, serif;
font-size:14px;
font-style:italic;

ul {
list-style-type: none;
margin-top:-12px;
padding: 0;
overflow: hidden;
background-color:#F3C;

35
width:1365px;
margin-left:-8px;
height:70px;
}

li {
float: left;

li a {
display: block;
color: white;
text-align: center;
margin-left:50px;
padding: 14px 16px;
text-decoration: none;
}

li a:hover {
background-color:#69F;
}
.logo
{
margin-left:500px;
margin-top:-100px;

}
.mar{
margin-left:450px;
margin-top:-30px;
}
.mar1 {
margin-left:140px;
}

.news{

36
height:30px;
width:500px;
}

.logo2{
margin-top:-90px;
background-color:#FFF;
width:1365px;
margin-left:-8px;
height:61px;
float:left;
}
.img{
margin-left:150px;
}

.new{
margin-top:-90px;
margin-left:300px;

}
.new2{
margin-top:-44px;
margin-left:880px;

.formdesign{
height:500px;
width:1350px;
font-family:Georgia, "Times New Roman",
Times, serif;
font-style:italic;
margin-top:200px;
}
.mgallery{
margin-left:70px;

37
}
input[type=text],select
.form
{
width:300px;
padding:20px;
margin:15px;
display:inline-block;
border:#F6F;
box-sizing:border-box;
background:#FFF;
text-align:center;
}
input[type=submit]
{
width:500px;
background-color:#FFF;
padding:20px;
margin:15px;
border:none;

border-radius:4px;
cursor:pointer;
}

.cele
{
margin-left:160px;
margin-top:20px;
}
.celefaculty
{
margin-left:260px;
margin-top:-1330px;
}
.aboutimg
{

38
margin-top:10px;
margin-left:300px;
}
.aboutext1
{

height:500px;
width:400px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-top:-500px;
background:#0CC;

}
.bar{
height:100px;
width:1360px;
margin-left:-8px;
background:#CCC;
}
.textbar
{
margin-top:-90px;
margin-left:70px;
}
.bar2{
height:100px;
width:1360px;
margin-left:-8px;
background:#CCC;
}
.textbar2
{
margin-top:-90px;
margin-left:70px;
}

39
.undertext1{
height:950px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-320px;
background:#FFF;
}
.weekend1{
height:1050px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-320px;
background:#FFF;
}
.undertextb{
height:1500px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-320px;
background:#FFF;
}
.undertextc{
height:1200px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-320px;
background:#fff;
}
.applyimg{

40
height:380px;
width:300px;
background:#CCC;
margin-left:50px;
margin-top:50px;

.advancedtext{
height:300px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-320px;
background:#FFF;

}
.advancedtext2{
height:300px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.advancedtext3{
height:200px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

41
}
.advancedtext4{
height:300px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.advancedtext5{
height:180px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.advancedtext6{
height:185px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.advancedtext7{
height:185px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;

42
margin-left:370px;
margin-top:-25px;
background:#FFF;

}.advancedtext8{
height:250px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-25px;
background:#FFF;

}
.advancedtext9{
height:230px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-20px;
background:#FFF;

}
.advancedtext10{
height:165px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}.advancedtext11{
height:250px;
width:500px;

43
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;
}
.undertext{
height:300px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-320px;
background:#FFF;

}
.undertext2{
height:300px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.undertext3{
height:200px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.undertext4{

44
height:300px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.undertext5{
height:180px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.coursetext{
height:300px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-320px;
background:#FFF;

}
.rightimg{
height:500px;
width:200px;
margin-left:1100px;
margin-top:-300px;
}
.coursetext2{
height:150px;

45
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-40px;
background:#FFF;

}
.coursetext3{
height:300px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.coursetext4{
height:150px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.coursetext5{
height:150px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

46
}
.coursetext6{
height:175px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}
.coursetext7{
height:175px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-00px;
background:#FFF;

}.coursetext8{
height:175px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

}.coursetext9{
height:175px;
width:500px;
font-family:Georgia, "Times New Roman",
Times, serif;
margin-left:370px;
margin-top:-30px;
background:#FFF;

47
}
.course{
font-family:Verdana, Geneva, sans-serif;
font-size:14px;
margin-top:-30px;
border:outset;
height:50px;
width:180px;
margin-left:540px;
border-color:#666;
background:#FFF}

.coursename{
height:340px;
width:250px;
background:#CCC;
margin-left:40px;

}
.imgname{
margin-top:-250px;
margin-left:50px;
}

.coursename2{
height:320px;
width:250px;
background:#CCC;
margin-left:380px;
margin-top:-300px;}
.imgname2{
margin-top:-250px;
margin-left:405px;}
.coursename3{
height:320px;
width:250px;

48
background:#CCC;
margin-left:715px;
margin-top:-293px;}

.imgname3{
margin-top:-255px;
margin-left:738px;
}
.coursename4{
height:340px;
width:250px;
background:#CCC;
margin-left:1050px;
margin-top:-312px;}

.imgname4{
margin-top:-265px;
margin-left:1075px;
}

.course2{
font-family:Verdana, Geneva, sans-serif;
font-size:14px;
margin-top:-30px;
border:outset;
height:50px;
width:180px;
margin-left:540px;
border-color:#666;
background:#FFF;

.coursename5{
height:340px;
width:250px;
background:#CCC;

49
margin-left:40px;
}
.imgname5{
margin-top:-260px;
margin-left:65px;
}
.coursename6{
height:320px;
width:250px;
background:#CCC;
margin-left:373px;
margin-top:-300px;}
.imgname6{
margin-top:-255px;
margin-left:400px;}
.coursename7{
height:320px;
width:250px;
background:#CCC;
margin-left:710px;
margin-top:-290px;}

.imgname7{
margin-top:-260px;
margin-left:730px;
}
.coursename8{
height:340px;
width:250px;
background:#CCC;
margin-left:1050px;
margin-top:-285px;}

.imgname8{
margin-top:-275px;
margin-left:1080px;
}

50
.img2
{
height:100px;
width:100px;
margin-top:7px;
margin-left:230px;
}

.marquee2
{
width:650px;
height:300px;
margin-top:300px;
margin-left:430px;

}
.brandtag
{
height:100px;
width:80px;
margin-left:230px;
margin-top:-300px;

}
.contact
{
height:500px;
width:500px;
margin-top:70px;
margin-left:230px;
background-image:url(website/face-bg.jpg);

51
.text
{
font-family:Georgia, "Times New Roman",
Times, serif;
font-size:12px;
font-style:normal;
text-align:left;
margin-left:40px;

}
.img3
{
height:500px;
width:400px;
margin-left:411px;
margin-top:-330px;
}
.text2
{
height:200px;
width:1400px;
background-color:#C9F;
margin-top:8px;
margin-right:100px;
margin-left:-300px;

}
.text3
{
font-family:Georgia, "Times New Roman",
Times, serif;
font-style:normal;

52
height:200px;
margin-left:-300px;
width:1400px;

background-color:#FFF;
}

.footer
{
background:#666;
height:170px;
width:1425px;
margin-left:-28px;
}

.footertext
{
font-family:Verdana, Geneva, sans-serif;
font-size:24px;
margin-top:-22px;
border:outset;
height:30px;
width:50px;
margin-left:635px;
border-color:#666;
background:#666;
}
.text5{
font-family:Verdana, Geneva, sans-serif;
font-size:20px;
margin-top:-20px;
}

53
THE END

54

Potrebbero piacerti anche