45
How to create website in VB10

How to create website in VB10

  • Upload
    kerryn

  • View
    53

  • Download
    0

Embed Size (px)

DESCRIPTION

How to create website in VB10. Click . Start menu -> all program -> Microsoft Visual SourceSafe-> Microsoft Visual Studio 2010. Open Microsoft Visual Studio 2010 window . Click New project . Display new project window . Click (Select ) Asp.Net Web Application Add project name. - PowerPoint PPT Presentation

Citation preview

Page 1: How to create website in VB10

How to create website in VB10

Page 2: How to create website in VB10

Start menu -> all program -> Microsoft Visual SourceSafe-> Microsoft Visual Studio 2010

Click

Page 3: How to create website in VB10

Open Microsoft Visual Studio 2010 window

Page 4: How to create website in VB10

Click New project

Page 5: How to create website in VB10

Display new project window

Page 6: How to create website in VB10

Click (Select ) Asp.Net Web Application

Add project name

Page 7: How to create website in VB10

Click Browse button and select path

Ex: D:\new website

Page 8: How to create website in VB10

Display Default window

Page 9: How to create website in VB10

Click (left) solution Explorer

Page 10: How to create website in VB10

Click (left) solution Explorer

Select unvented file (Ctrl+ mouse Click) . Select then right click in mouse select Delete option

Page 11: How to create website in VB10

How to Create new page

Click (left) solution Explorer Click Add - > New Item

Page 12: How to create website in VB10

Display Add New Item – Project window

Select Installed Templates-> Visual Basic -> web

Page 13: How to create website in VB10

Select HTML.Page

Name Type index.htm

Click Add button

Page 14: How to create website in VB10

Create index page

Page 15: How to create website in VB10

Type title tag inside of the company name

Then type the meta tag coding <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /> <meta http-equiv="REFRESH" content="0;url=home.htm" />

Page 16: How to create website in VB10

Create New folder in project

Click (left) solution Explorer Click project name(left click in mouse) Add - > New folder

Page 17: How to create website in VB10

Create new folder

Type Style sheets create new folder

Page 18: How to create website in VB10

Create New Style sheets in project

Click (left) solution Explorer Click project name(left click in mouse) Add - > New folder

Page 19: How to create website in VB10

Select Style Sheet

Name Type Stylesheet.css

Click Add button

Display Add New Item – Project window

Select Installed Templates-> Visual Basic -> web

Page 20: How to create website in VB10

Create New Style sheets in project

Click (left) solution Explorer Click project name(left click in mouse) Add - > New Item

Page 21: How to create website in VB10

Display Add New Item – Project window

Select Installed Templates-> Visual Basic -> web Select HTML.Page

Name Type Home.htm

Click Add button

Page 22: How to create website in VB10

Create Home page

Page 23: How to create website in VB10

Type title tag inside of the company name or project name Then type the meta tag coding <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta name="description" content=" "/> <meta name="author" content="" /> <meta name="keywords" content="" />

Page 24: How to create website in VB10

Then type the style ling tag coding <link href="Styles sheets/styles sheets.css" rel="stylesheet" type="text/css" />

Page 25: How to create website in VB10

Create one template in Photoshop

Page 26: How to create website in VB10

Click style sheet then following css type body{margin: 0px;background-color:#510509;margin-left:auto;margin-right:auto;}

Page 27: How to create website in VB10

Click home.htm then click the design view

Page 28: How to create website in VB10

Click -> toolbox(lift) -> table (double click)

Page 29: How to create website in VB10

Create table

Page 30: How to create website in VB10

Select table and click F4 and type celpadding and celspacing Zero

Page 31: How to create website in VB10

Click the source view and table width type 1000px and align="center"

Page 32: How to create website in VB10

Click the design view and select the two columns then click right in muse the select Delete -> Delete columns Delete and columns

Page 33: How to create website in VB10

Select fist row and click F4 and type height type in top banner size Ex: height :100px;

Page 34: How to create website in VB10

Insert new row Click (right) muse then select Insert-> Row Below or (ctrl+Alt+Down Arrow)

Page 35: How to create website in VB10

Select second row and click F4 and type height type in image banner size Ex: height :300px

Page 36: How to create website in VB10

Click fist row then Click -> toolbox(lift) -> table (double click)Create inside of the row the click F4 and celpadding and celspacing type Zero

Page 37: How to create website in VB10

Delete row (2) and columns(1)

Page 38: How to create website in VB10

Click the fist columns and click F4 and height and width type ;Ex: height :100px; widh: 40%

Page 39: How to create website in VB10

Click second columns then Click F4 and width :60% type then Click -> toolbox(lift) -> table (double click)Create inside of the row the click F4 and celpadding and celspacing type ZeroDelete 2 row and 2 columns the click F4 and high: 50px for fist row the click second row high:50px type

Page 40: How to create website in VB10

Click second row then Click -> toolbox(lift) -> table (double click)Create inside of the row the click F4 and celpadding and celspacing type ZeroDelete 2 columns the click F4 and high: 50px for fist columns

Page 41: How to create website in VB10

Insert new columnsClick (right) muse then select Insert-> Row Below or (ctrl+Alt+Right Arrow)The select fist columns and click F4 width is 25% set width in columns (4 columns)

Page 42: How to create website in VB10

Click styles sheet and type menu style Ex: .menu{font-family:Arial;font-size:14px;text-align:center;color:White;text-decoration:none; line-height:25px;}.menu:hover{font-family:Arial;font-size:14px;text-align:center;color:#fee490;text-decoration:none; line-height:25px;}

Page 43: How to create website in VB10

Select fist menu columnsClick home.htm and click design view type following codingEx: <a href=“home.htm” class=“menu”>Home</a> same coding for further menu ( select separate columns and type about us ,profile , contact us)

Page 44: How to create website in VB10

Click design view Select home menu columns and click F4 type Align : center (all menu select and appall align:cente)

Page 45: How to create website in VB10