SlideShare a Scribd company logo
1 of 44
Download to read offline
Create Web Pages
with HTML & CSS
Hans-Petter Halvorsen
http://www.halvorsen.blog
Contents
• Part 1:
–Introduction to HTML and CSS
• Part 2:
–Step by Step Example
• Deploy to Web Server
–FTP
HTML & CSS
Introduction
Hans-Petter Halvorsen
http://www.halvorsen.blog
Web Site
Example
Presentation (Figures and Text) of
your Software Product
Documents available for download
(Hyperlinks)
WYSIWYG HTML Editors
• Adobe Dreamweaver (Monthly Payment)
• Kompozer (Free)
• Bluegriffon (Free)
• Sparkle ($80), etc...
Other HTML Editors (not WYSIWYG)
• Visual Studio (ASP.NET)
• Visual Studio Code
• CoffeeCup ($69, Free Trial)
• Coda ($99)
• NotePad (-> any textbased editor)
WYSIWYG – What You See Is What You Get
You dont need to know HTML syntax - Its
just like using MS Word.
Only possible to change the HTML
source code and then select “Preview”
in order to see how it looks like in a
Web Browser.
You need to know HTML syntax
Create a Web Site with Visual Studio
• Visual Studio is not well suited for creating Static HTML
Web Pages.
• Visual Studio has poor WYSIWYG Editing possibilities
• Visual Studio is more optimized for creating Dynamic
Web Pages and creating ASP.NET Web Pages in special
• For HTML pages Visual Studio Code may be a better
choice.
Simple Web Page in Visual Studio Code
Web Server
Apache Web Server or IIS Web Server
Your Development PC
PC with Web Browser
Visual Studio
FTP
E.g. WinSCP, FileZilla or
use FTP features in Visual
Studio
Upload Files
Web Page Url
HTTP
Request
Response
Clients
Visual Studio Code
Create a Web Site with Visual Studio
Note! Make sure the Source Code
should be stored in your Team
Services Project
Create a Web Site with Visual Studio
Your Start Page needs to
be named “index.htm”
Visual Studio HTML Editor
Note! Due to the brand new HTML editor in Visual Studio, static HTML files no
longer has the Design|Split|Source options enabled by default.
• That’s because the new HTML editor is the default editor for all HTML files
with the exception of ASP.NET Web Forms files (.aspx, .ascx, .master).
• However, it is only the Web Forms editor that has support for the designer
and split view.
• So all we have to do is to map our .html or .htm files to use the Web Forms
editor instead of the new HTML editor.
• Simply right-click any .html/.htm file in Solution Explorer and select Open
With…
HTML Editor in Visual Studio
Simple “WYSIWYG”
Editor + Preview
Code Editor
Create your
HTML Code here!
Simple HTML Page
Example
14
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
HTML Code
Web Browser:
Test in Browser
Hit F5 to Run It
Or Select “View in Browser”
Note! All documents
should be PDF Files!!
Hyper-
links:
<!DOCTYPE html>
<html>
<body>
<h1>This is a heading</h1>
<a href="http://www.google.com">This is a link to Google</a>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<h1>This is a heading</h1>
<img src=“myimage.jpg" alt=”blabla" width="104" height="142">
</body>
</html>
Images:
HTML Tags Overview
<a href="http://www.google.com">This is a link to Google</a>
<b>This is my Text</b>
Hyperlink:
Bold Text:
<h1>This is my Header</h1>
Headers:
This is my Text
<br>
This is also my Text
Line Break:
<p>My first paragraph.</p>
Paragraph:
<img src=“myimage.jpg" alt=”blabla" width="104" height="142">
Image:
<h2>This is my Header</h2>
<h3>This is my Header</h3>
<title>This is my Title</title>
Title:
<!-- Write your comments here -->
Comments:
HTML Tags - Table
<table width="200" border="1">
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
<td>d</td>
</tr>
<tr>
<td>e</td>
<td>f</td>
<td>g</td>
<td>h</td>
</tr>
<tr>
<td>i</td>
<td>j</td>
<td>k</td>
<td>l</td>
</tr>
</table>
...
<head
...
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
..
</head>
...
CSS (Cascading Style Sheet)
CSS is a stylesheet
language that describes
the presentation of an
HTML page.
body {
background-color: #d0e4fe;
}
h1 {
color: orange;
text-align: center;
}
p {
font-family: "Times New Roman";
font-size: 20px;
}
stylesheet.css:
myfile.htm:
HTML
Good Resource for creating Web Pages with
HTML, CSS, JavaScript, SQL, etc.
http://www.w3schools.com
HTML & CSS
Step by Step Example
Hans-Petter Halvorsen
http://www.halvorsen.blog
We are going to make a Web Page like this:
Create a proper
Folder structure, e.g.:
My Web Site
/css
...
/documents
...
/html
...
/images
...
/js
...
index.html
You should always think
structure before you start coding
Start with an empty HTML Page
Create Title,
Header and Text
Create Images
Create Hyperlinks
Hyperlinks can be other
web pages, documents, etc.
Learn more HTML
• https://www.w3schools.com/html
CSS
• CSS is a language that describes the style of an
HTML document.
• CSS describes how HTML
elements should be displayed.
• Examples: Font Size, Colors,
Alignment, etc.
Inline CSS
• The CSS in part of the
HTML file
<style>
..
</style>
External CSS File
Here you see a simple example:
Create CSS
Explore!
Find Colors, Font Sizes,
etc. that fits your system
Learn more CSS
• https://www.w3schools.com/css/
Bootstrap
http://www.w3schools.com/bootstrap/
Bootstrap is the most popular HTML, CSS, and JavaScript
framework for developing responsive, mobile-first web sites.
Bootstrap is completely free to download and use!
Alternative 1
Alternative 2
Explore!
With CSS and Bootstrap you
have endless possibilities
FTP
Hans-Petter Halvorsen
http://www.halvorsen.blog
File Transfer Protocol
Web Server
• You need to deploy your files to the Web
Server
• Typically you use a FTP program
– You need to know the Host Name, and a User
Name and a Password
Web
PCs with Web Browsers
Clients
Server-side
Internet
HTML
HTML
CSS
FTP Software
• WinSCP
– https://winscp.net
• FileZilla
– https://filezilla-project.org
Hans-Petter Halvorsen
University of Southeast Norway
www.usn.no
E-mail: hans.p.halvorsen@usn.no
Web: https://www.halvorsen.blog

More Related Content

Similar to Create Web Pages by programming of your chice.pdf

Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSTJ Stalcup
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Designmlincol2
 
Web development (html)
Web development (html)Web development (html)
Web development (html)AliNaqvi131
 
Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlantaThinkful
 
Html:css crash course (4:5)
Html:css crash course (4:5)Html:css crash course (4:5)
Html:css crash course (4:5)Thinkful
 
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTREWeb Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
PSD to HTML Conversion
PSD to HTML ConversionPSD to HTML Conversion
PSD to HTML ConversionDarryl Sherman
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML Rahul Bathri
 
Html5 elements-Kip Academy
Html5 elements-Kip AcademyHtml5 elements-Kip Academy
Html5 elements-Kip Academykip academy
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvZahouAmel1
 
INTRODUCTION TO HTML & CSS .pptx
INTRODUCTION TO HTML & CSS .pptxINTRODUCTION TO HTML & CSS .pptx
INTRODUCTION TO HTML & CSS .pptxSarthakrOkr
 
HyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.pptHyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.pptDrShamikTiwari
 

Similar to Create Web Pages by programming of your chice.pdf (20)

Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Design
 
Day of code
Day of codeDay of code
Day of code
 
Web development (html)
Web development (html)Web development (html)
Web development (html)
 
David Weliver
David WeliverDavid Weliver
David Weliver
 
Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
 
Html:css crash course (4:5)
Html:css crash course (4:5)Html:css crash course (4:5)
Html:css crash course (4:5)
 
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTREWeb Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
 
PSD to HTML Conversion
PSD to HTML ConversionPSD to HTML Conversion
PSD to HTML Conversion
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
html
htmlhtml
html
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
 
Html5 elements-Kip Academy
Html5 elements-Kip AcademyHtml5 elements-Kip Academy
Html5 elements-Kip Academy
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
Html5 css3
Html5 css3Html5 css3
Html5 css3
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
 
INTRODUCTION TO HTML & CSS .pptx
INTRODUCTION TO HTML & CSS .pptxINTRODUCTION TO HTML & CSS .pptx
INTRODUCTION TO HTML & CSS .pptx
 
HyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.pptHyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.ppt
 

Recently uploaded

Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptxVanshNarang19
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...BarusRa
 
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightCheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightDelhi Call girls
 
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiVIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiSuhani Kapoor
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...Suhani Kapoor
 
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfThe_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfAmirYakdi
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵anilsa9823
 
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightCheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightDelhi Call girls
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Delhi Call girls
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfParomita Roy
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricksabhishekparmar618
 
Cheap Rate ➥8448380779 ▻Call Girls In Huda City Centre Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Huda City Centre GurgaonCheap Rate ➥8448380779 ▻Call Girls In Huda City Centre Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Huda City Centre GurgaonDelhi Call girls
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...Suhani Kapoor
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceanilsa9823
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️soniya singh
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...babafaisel
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdftbatkhuu1
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...Call Girls in Nagpur High Profile
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 

Recently uploaded (20)

Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptx
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightCheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
 
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiVIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
 
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfThe_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
 
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightCheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricks
 
Cheap Rate ➥8448380779 ▻Call Girls In Huda City Centre Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Huda City Centre GurgaonCheap Rate ➥8448380779 ▻Call Girls In Huda City Centre Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Huda City Centre Gurgaon
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
 

Create Web Pages by programming of your chice.pdf

  • 1. Create Web Pages with HTML & CSS Hans-Petter Halvorsen http://www.halvorsen.blog
  • 2. Contents • Part 1: –Introduction to HTML and CSS • Part 2: –Step by Step Example • Deploy to Web Server –FTP
  • 3. HTML & CSS Introduction Hans-Petter Halvorsen http://www.halvorsen.blog
  • 4. Web Site Example Presentation (Figures and Text) of your Software Product Documents available for download (Hyperlinks)
  • 5. WYSIWYG HTML Editors • Adobe Dreamweaver (Monthly Payment) • Kompozer (Free) • Bluegriffon (Free) • Sparkle ($80), etc... Other HTML Editors (not WYSIWYG) • Visual Studio (ASP.NET) • Visual Studio Code • CoffeeCup ($69, Free Trial) • Coda ($99) • NotePad (-> any textbased editor) WYSIWYG – What You See Is What You Get You dont need to know HTML syntax - Its just like using MS Word. Only possible to change the HTML source code and then select “Preview” in order to see how it looks like in a Web Browser. You need to know HTML syntax
  • 6. Create a Web Site with Visual Studio • Visual Studio is not well suited for creating Static HTML Web Pages. • Visual Studio has poor WYSIWYG Editing possibilities • Visual Studio is more optimized for creating Dynamic Web Pages and creating ASP.NET Web Pages in special • For HTML pages Visual Studio Code may be a better choice.
  • 7. Simple Web Page in Visual Studio Code
  • 8. Web Server Apache Web Server or IIS Web Server Your Development PC PC with Web Browser Visual Studio FTP E.g. WinSCP, FileZilla or use FTP features in Visual Studio Upload Files Web Page Url HTTP Request Response Clients Visual Studio Code
  • 9. Create a Web Site with Visual Studio Note! Make sure the Source Code should be stored in your Team Services Project
  • 10. Create a Web Site with Visual Studio Your Start Page needs to be named “index.htm”
  • 11. Visual Studio HTML Editor Note! Due to the brand new HTML editor in Visual Studio, static HTML files no longer has the Design|Split|Source options enabled by default. • That’s because the new HTML editor is the default editor for all HTML files with the exception of ASP.NET Web Forms files (.aspx, .ascx, .master). • However, it is only the Web Forms editor that has support for the designer and split view. • So all we have to do is to map our .html or .htm files to use the Web Forms editor instead of the new HTML editor. • Simply right-click any .html/.htm file in Solution Explorer and select Open With…
  • 12. HTML Editor in Visual Studio
  • 13. Simple “WYSIWYG” Editor + Preview Code Editor Create your HTML Code here!
  • 14. Simple HTML Page Example 14 <!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> HTML Code Web Browser:
  • 15. Test in Browser Hit F5 to Run It Or Select “View in Browser” Note! All documents should be PDF Files!!
  • 16. Hyper- links: <!DOCTYPE html> <html> <body> <h1>This is a heading</h1> <a href="http://www.google.com">This is a link to Google</a> </body> </html> <!DOCTYPE html> <html> <body> <h1>This is a heading</h1> <img src=“myimage.jpg" alt=”blabla" width="104" height="142"> </body> </html> Images:
  • 17. HTML Tags Overview <a href="http://www.google.com">This is a link to Google</a> <b>This is my Text</b> Hyperlink: Bold Text: <h1>This is my Header</h1> Headers: This is my Text <br> This is also my Text Line Break: <p>My first paragraph.</p> Paragraph: <img src=“myimage.jpg" alt=”blabla" width="104" height="142"> Image: <h2>This is my Header</h2> <h3>This is my Header</h3> <title>This is my Title</title> Title: <!-- Write your comments here --> Comments:
  • 18. HTML Tags - Table <table width="200" border="1"> <tr> <td>a</td> <td>b</td> <td>c</td> <td>d</td> </tr> <tr> <td>e</td> <td>f</td> <td>g</td> <td>h</td> </tr> <tr> <td>i</td> <td>j</td> <td>k</td> <td>l</td> </tr> </table>
  • 19. ... <head ... <link rel="stylesheet" type="text/css" href="stylesheet.css" /> .. </head> ... CSS (Cascading Style Sheet) CSS is a stylesheet language that describes the presentation of an HTML page. body { background-color: #d0e4fe; } h1 { color: orange; text-align: center; } p { font-family: "Times New Roman"; font-size: 20px; } stylesheet.css: myfile.htm:
  • 20. HTML Good Resource for creating Web Pages with HTML, CSS, JavaScript, SQL, etc. http://www.w3schools.com
  • 21. HTML & CSS Step by Step Example Hans-Petter Halvorsen http://www.halvorsen.blog
  • 22. We are going to make a Web Page like this:
  • 23. Create a proper Folder structure, e.g.: My Web Site /css ... /documents ... /html ... /images ... /js ... index.html You should always think structure before you start coding
  • 24. Start with an empty HTML Page
  • 27. Create Hyperlinks Hyperlinks can be other web pages, documents, etc.
  • 28. Learn more HTML • https://www.w3schools.com/html
  • 29. CSS • CSS is a language that describes the style of an HTML document. • CSS describes how HTML elements should be displayed. • Examples: Font Size, Colors, Alignment, etc.
  • 30. Inline CSS • The CSS in part of the HTML file <style> .. </style>
  • 31. External CSS File Here you see a simple example:
  • 33.
  • 34. Explore! Find Colors, Font Sizes, etc. that fits your system
  • 35. Learn more CSS • https://www.w3schools.com/css/
  • 36. Bootstrap http://www.w3schools.com/bootstrap/ Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites. Bootstrap is completely free to download and use!
  • 39. Explore! With CSS and Bootstrap you have endless possibilities
  • 41. Web Server • You need to deploy your files to the Web Server • Typically you use a FTP program – You need to know the Host Name, and a User Name and a Password
  • 42. Web PCs with Web Browsers Clients Server-side Internet HTML HTML CSS
  • 43. FTP Software • WinSCP – https://winscp.net • FileZilla – https://filezilla-project.org
  • 44. Hans-Petter Halvorsen University of Southeast Norway www.usn.no E-mail: hans.p.halvorsen@usn.no Web: https://www.halvorsen.blog