Creating and Editing Content in WordPress

Slides:



Advertisements
Similar presentations
Computers: Tools for an Information Age Writing Your Own Web Page: Using HTML and Web Authoring Tools.
Advertisements

Cascading Style Sheets
Chapter 3 Tables and Page Layout
Computer Science 1611 Internet & Web Creating Webpages Hypertext and the HTML Markup Language.
Web Page Development Identify elements of a Web Page Start Notepad
1 Computing for Todays Lecture 22 Yumei Huo Fall 2006.
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
 Definition of HTML Definition of HTML  Tags in HTML Tags in HTML  Creation of HTML document Creation of HTML document  Structure of HTML Structure.
Tutorial 1: Getting Started with HTML5
CPSC 203 Introduction to Computers Lab 39, 40 By Jie (Jeff) Gao.
Creating a Simple Page: HTML Overview
© 2012 Boise State University1 WordPress Training February 14, 2013.
Multimedia and the Web Chapter Overview  This chapter covers:  What Web-based multimedia is  how it is used today  advantages and disadvantages.
Web Technologies Website Development Trade & Industrial Education
Creating Web Pages Overview. Design – Start with a Purpose Before you start any web page, you need to design the website. The first question that should.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
© 2012 Boise State University1 WordPress Training February 14, 2013.
HTML Structure & syntax
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 Exploring Microsoft Office Word 2007 Chapter 8 Word and the Internet Robert Grauer, Keith.
Learning Web Design: Chapter 4. HTML  Hypertext Markup Language (HTML)  Uses tags to tell the browser the start and end of a certain kind of formatting.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Welcome to CMPE003 Personal Computer Concepts: Hardware and Software Winter 2003 UC Santa Cruz Instructor: Guy Cox.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
WEBiT Adding a new page. 1. View a page like the one you wish to create a. Navigate to a page with a similar layout to the new page you wish to create.
Website Project Development Presentation by APNARAJ.COM.
Introduction to web development and HTML MGMT 230 LAB.
Dreamweaver MX. 2 Overview of Templates n Templates represent a web page design or _______ that will be common to multiple pages. n There are two situations.
Add an Image. index.html about.html contact. html contact. html.
Hélène kay Webdiva Consultants Dreamweaver Week 8 hélène kay hélène kay.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
Chapter 5 Quick Links Slide 2 Performance Objectives Understanding Framesets and Frames Creating Framesets and Frames Selecting Framesets and Frames Using.
1 Creating Links within a Web Page  These links are especially useful on long Web pages  Links at the top of the page point to areas further down the.
USING WORDPRESS TO CREATE A WEBSITE (RATHER THAN A BLOG) STEP-BY-STEP INSTRUCTIONS.
Creating Links. The Anchor Element: The anchor tag can be used in three different ways: 1.External link – to link to a web page outside your own website.
A STUDENT’S GUIDE TO ADDING IMAGES TO NEW OR EXISTING BLOG POSTS Adding Images to Your Blog Post Presented by Michelle Krummel.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
Videos, the More Tag, Permalinks, and Shortlinks.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
USING WORDPRESS TO CREATE A WEBSITE (RATHER THAN A BLOG) STEP-BY-STEP INSTRUCTIONS.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
INTRODUCTION JavaScript can make websites more interactive, interesting, and user-friendly.
1 Start TextEdit. 2 Creating a Home Page  A home page is the main page of a Web site –Visitors usually view the home page first –Identify the purpose.
HTML Comprehensive Concepts and Techniques Second Edition Project 2 Creating a Web Site with Links.
LBSC 690 Session 4 Programming. Languages How do we learn a language? Learn by listening Then reading Then writing How do we teach programming? Learn.
Writing Your Own Web Page: Using HTML and FrontPage Chapter 10.
Beginning JavaScript 4 th Edition. Chapter 1 Introduction to JavaScript and the Web.
Intro to HTML.  Hypertext markup language (HTML) is a way of telling web browsers how to display a page  You can type them by hand in a word processing.
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
HTML5 and CSS3 Illustrated Unit C: Getting Started with CSS.
Chapter 8 Adding Multimedia Content to Web Pages HTML5 & CSS 7 th Edition.
Sitecore Basic Training Drexel’s full-featured web content management system (CMS) Web Support Information Resources & Technology (IRT)
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
Web Design Principles 5 th Edition Chapter 3 Writing HTML for the Modern Web.
Sitecore Basic Training Content Management System (CMS) University Communications Web Services
XP Creating Web Pages with Microsoft Office
HTML Structure & syntax
HTML Extra Markup CS 1150 Spring 2017.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Section 508 At long last, two of the most looming accessibility questions in the United States have been answered.
Project Objectives Publish to a remote server
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Chapter 2 Adding Web Pages, Links, and Images
Consult America Technology Consulting Services
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Presentation transcript:

Creating and Editing Content in WordPress CS 49 – Week 2

Basic Workflow Concepts Content pieces in a WordPress web site are really database entries. Fortunately, you do NOT need to be a database expert in order to use WordPress; it handles the entire process for you behind the scenes. Updating existing content involves obtaining it, editing it, and then resaving it to the database.

Updating Existing Content Launch a web browser (WordPress is compatible with all modern web browsers). Log in. Go to the web page that contains the content you wish to change. Click Edit. Make any desired changes, and then click Publish.

Basic HTML HTML is the language used to create content on the Web (including when using WordPress). HTML is made of “tags” or “elements” that act as commands to tell the browser what to do and when. The syntax for HTML is: <tag attribute=“value”> modified text</tag>

WordPress and HTML For example, to create italicized text, we use the <em> tag: This is <em>really important</em> stuff! Fortunately, WordPress uses a WYSIWYG editor that writes most of the HTML code for you. If you have something specific you want to do, you can always write the HTML code yourself. WordPress also uses shortcodes which are used to simplify the coding. Shortcodes are enclosed in [square brackets].

Creating New Content Launch a web browser (WordPress is compatible with all modern web browsers). Log in. In the Dashboard, select the type of content you wish to add (Post or Page). Click Add. Enter content. Click Publish.

Photos – Accessibility issues In 1998, the U.S. Congress amended the Rehabilitation Act of 1973 (Section 508). Section 508 requires federal agencies and any organization that receives federal funding to ensure that all electronic and information technology is made accessible to people with disabilities. To comply with these accessibility guidelines, be sure to add an alternative text description (the alt attribute) for every non-text element on a web page (for example, images, movies, and sound files).

Crafting the ALT To craft the language for the alternative text: Imagine that you are on the telephone with a friend. Look at the media object (image/movie/sound file), and describe it in detail to that friend. Write this description down as the alternative text (the alt attribute).

Adding Photos Log in to your WordPress site. Click Add Media. Select desired photo. Click Insert into post or Insert into page.