Programming in HTML5 with CSS course description This course provides an introduction to HTML5, CSS3, and JavaScript. It is an entry point into both the Web application and Windows Store apps training paths. The course focuses on using HTML5 / CSS3 / JavaScript to implement programming logic, define and use variables, perform looping and branching, develop user interfaces, capture and validate user input, store data, and create well-structured application. What will you learn Create and style HTML5 pages. Use JavaScript. Style HTML5 pages by using CSS3. Use common HTML5 APLs in interactive Web applications. Create HTML5 Web pages that can adapt to different devices and form factors. Enhance the user experience by adding animations to the HTML5 page. Programming in HTML5 with CSS course details Who will benefit: Website developers. Prerequisites: HTML5 development fundamentals. Duration 5 days Programming in HTML5 with CSS course contents Overview of HTML and CSS Overview of HTML, Overview of CSS, Creating a Web Application by Using Visual Studio 2012. Hands on Exploring the Contoso Conference Application. Creating and Styling HTML5 Pages Creating an HTML5 Page, Styling an HTML5 Page. Hands on Creating and Styling HTML5 Pages. Introduction to JavaScript Overview of JavaScript Syntax, Programming the HTML DOM with JavaScript, Introduction to jQuery. Hands on Displaying Data and Handling Events by Using JavaScript. Creating Forms to Collect and Validate User Input Overview of Forms and Input Types, Validating User Input by Using HTML5 Attributes, Validating User Input by Using JavaScript. Hands on Creating a Form and Validating User Input. Communicating with a Remote Data Source Sending and Receiving Data by Using XMLHTTPRequest, Sending and Receiving Data by Using jQuery AJAX operations. Hands on Communicating with a Remote Data Source. Styling HTML5 by Using CSS3 Styling Text, Styling Block Elements, CSS3 Selectors, Enhancing Graphical Effects by Using CSS3. Hands on Styling Text and Block Elements using CSS3. Creating Objects and Methods by Using JavaScript Writing Well-Structured JavaScript, Creating Custom Objects, Extending Objects. Hands on Refining Code for Maintainability and Extensibility. Creating Interactive Pages using HTML5 APIs Interacting with Files, Incorporating Multimedia, Reacting to Browser Location and Context, Debugging and Profiling a Web Application. Hands on Creating Interactive Pages by Using HTML5 APIs. Adding Offline Support to Web Applications Reading and Writing Data Locally, Adding Offline Support by Using the Application Cache. Hands on Adding Offline Support to a Web Application. Implementing an Adaptive User Interface Supporting Multiple Form Factors, Creating an Adaptive User Interface. Hands on Implementing an Adaptive User Interface. Creating Advanced Graphics Creating Interactive Graphics by Using Scalable Vector Graphics, Programmatically Drawing Graphics by Using a Canvas. Hands on Creating Advanced Graphics. Animating the User Interface Applying CSS Transitions, Transforming Elements, Applying CSS Key-frame Animations. Hands on Animating User Interface Elements. Web Sockets for Real-Time Communications Introduction to Web Sockets, Sending and Receiving Data by Using Web Sockets. Hands on Implementing Real-Time Communications by Using Web Sockets. Creating a Web Worker Process Introduction to Web Workers, Performing Asynchronous Processing by Using a Web Worker. Hands on Creating a Web Worker Process.
HTML5 development training course description This three-day MTA Training course helps you prepare for Microsoft Technology Associate Exam 98-375, and build an understanding of these topics: Manage the Application Life Cycle, Build the User Interface by Using HTML5, Format the User Interface by Using CSS, Code by Using JavaScript. This course leverages the same content as found in the Microsoft Official Academic Course (MOAC) for this exam. What will you learn Manage the Application Life Cycle. Build the User Interface by Using HTML5. Format the User Interface by Using CSS. Code by Using JavaScript. HTML5 development training course details Who will benefit: Anyone working with HTML5. Prerequisites: None. Duration 3 days HTML5 development training course contents Managing the Application Life Cycle Platform fundamentals Packaging and the runtime environment: app package, app container, credentials/permission sets, host process, leverage existing HTML5 skills and content for slate/tablet applications. Manage the state of an application Manage session state, app state and persist state information; understand states of an application; understand the differences between local and session storage. Debug and test a HTML5 touch-enabled application Touch gestures; gestures you test on a device. HTML5 UI: Text, Graphics, and Media HTML5 tags for text content and graphics. When, why and how to use Canvas; when, why and how to use scalable vector graphics (SVG). HTML5 tags to play media. Video and audio tags. HTML5 UI: Organization, Input, and Validation HTML5 tags to organise content and forms Tables, lists, sections; semantic HTML. HTML5 tags for input and validation CSS Essentials: Content Flow, Positioning, styling Core CSS concepts Separate presentation from content (create content with HTML and style content with CSS); manage content flow (inline versus block flow); manage positioning of individual elements( float versus absolute positioning); manage content overflow (scrolling, visible and hidden); basic CSS styling. CSS Essentials: Layouts Arrange UI content by using CSS Use flexible box and grid layouts to establish content alignment, direction and orientation; proportional scaling and use of "free scale" for elements within a flexible box or grid; order and arrange content; concepts for using flex box for simple layouts and grid for complex layouts; grid content properties for rows and columns; use application templates. Managing Text Flow by Using CSS Regions and using regions to flow text content between multiple sections (content source, content container, dynamic flow, flow-into, flow-from, msRegionUpdate, msRegionOverflow, msGetRegionContent); columns and hyphenation and using these CSS settings to optimise the readability of text; use "positioned floats" to create text flow around a floating object Managing the Graphical Interface by Using CSS Graphics effects (rounded edges, shadows, transparency, background gradients, typography and Web Open Font Format); 2-D 3-D transformations (translate, scale, rotate, skew and 3-D perspective transitions and animations); SVG filter effects; Canvas. JavaScript and coding essentials Manage and maintain JavaScript, Create and use functions; jQuery and other third-party libraries. Update the UI by using JavaScript Locate/access elements; listen and respond to events; show and hide elements; update the content of elements. Animations, Graphics, and Accessing Data Code animations with JavaScript animation; manipulate the canvas; work with images, shapes and other graphics. Access data access by using JavaScript Send and receive data; transmit complex objects and parsing; load and save files; App Cache; datatypes; forms; cookies; localStorage JavaScript coding for Touch Interface, Device and Operating System Resources, and More Respond to the touch interface, Gestures, how to capture and respond to gestures, Code additional HTML5 APIs, GeoLocation, Web Workers, WebSocket; File API, Access device and operating system resources, In- memory resources, such as contact lists and calendar; hardware capabilities, such as GPS, accelerometer and camera.
Complete JavaScript training course description A hands on course covering JavaScript programming. Core JavaScript is covered first, including the basics, arrays, functions, classes, modules and Regular expressions. Client side JavaScript is then covered including JavaScript in browsers, Scripting CSS, the jQuery library and HTML APIs. What will you learn Read JavaScript. Write JavaScript. Debug JavaScript. Complete JavaScript training course details Who will benefit: Anyone wishing to learn JavaScript. Prerequisites: None. Duration 3 days Complete JavaScript training course contents CORE JAVASCRIPT Lexical structure: Character set, comments, literals, identifiers, and reserved words, optional semicolons.. Types, values and variables: Numbers, text, boolean values, null and undefines, the global object, wrapper objects, immutable primitive values and mutable object references, type conversions, variable declaration, variable scope. Expressions and operators: Primary expressions, object and array initializers, function definition expressions, property access expressions, invocation expressions, object creation expressions, operator overview, arithmetic expressions, relational expressions, logical expressions, assignment expressions, evaluation expressions, miscellaneous operators. Statements: Expression statements, compound and empty statements, declaration statements, conditionals, loops, jumps, miscellaneous statements, summary of JavaScript statements. Objects: Creating objects, querying and setting properties, deleting properties, testing properties, enumerating properties, property getters and setters, property attributes, object attributes, serializing objects, object methods. Arrays: Creating arrays, reading and writing array elements, sparse arrays, array length, adding and deleting array elements, iterating arrays, multi-dimensional arrays, array methods, FCMAScript 5 array methods, array type, array-like objects, strings as arrays. Functions: Defining functions, invoking functions, function arguments and parameters, functions as values, functions as namespaces, closures, function properties, methods and constructor, functional programming. Classes and modules: Classes and prototypes, classes and constructors, Java-style classes in JavaScript, augmenting classes, classes and types, object oriented techniques in JavaScript, subclasses, classes in ECMAScript 5, modules. Pattern matching and regular expressions: Defining regular expressions, string methods for pattern matching, the RegExp object. JavaScript subsets and extensions: JavaScript subsets, constants and scoped variables, destructuring assignment, iteration, shorthand functions, multiple catch clauses, E4X: ECMAScript for XML. Server-side JavaScript: Scripting Java with Rhino, asynchronous I/O with node. CLIENT SIDE JAVASCRIPT JavaScript in web browsers: Client side JavaScript, embedding JavaScript in HTML, execution of JavaScript programs, compatibility and interoperability, accessibility, security, client side frameworks. The Window object: Timers, browser location and navigation, browsing history, browser screen information, dialog boxes, error handling, document elements as window properties, multiple windows and frames. Scripting Documents: Overview of the DOM, selecting document elements, document structure and traversal, attributes, element content, creating, inserting and deleting nodes. Example: generating a table of contents, document and element geometry and scrolling, HTML forms, other document features. Scripting CSS: Overview of CSS, important CSS properties, scripting inline styles, querying computed styles, scripting CSS classes, scripting stylesheets. Handling events: Types of events, registering event handlers, event handler invocation, document load events, mouse events, mousewheel events, drag and drop events, text events, keyboard events. Scripted HTTP: Using XMLHttpRequest, HTTP by <script>: JSOMP, Comet with server-sent events. The jQuery library: jQuery basics, jQuery getters and setters, altering document structure, handling events with jQuery, Animated effects, Ajax with jQuery, Utility functions, jQuery selectors and selection methods, Extending jQuery with plug-ins. The jQuery UI library. Client side storage: localStorage and sessionStorage, Cookies, IE usingData persistence, Applicatioin storage and offline webapps. Scripted media and graphics: Scripting images, Scripting audio and video, SCG:scalable vector graphics, Graphics in a <canvas>. Scripted HTTP: Using XMLHttpRequest, HTTP by <script>: JSOMP, Comet with server-sent events. The jQuery library: jQuery basics, jQuery getters and setters, altering document structure, handling events with jQuery, Animated effects, Ajax with jQuery, Utility functions, jQuery selectors and selection methods, Extending jQuery with plug-ins. The jQuery UI library. Client side storage: localStorage and sessionStorage, Cookies, IE usingData persistence, Applicatioin storage and offline webapps. Scripted media and graphics: Scripting images, Scripting audio and video, SCG:scalable vector graphics, Graphics in a <canvas>. HTMLS APIs: Geolocation, history management, cross-origin messaging, web workers, type arrays and ArrayBuffers, blobs, the filesystem API, client side databases, web sockets.
Duration 4 Days 24 CPD hours This course is intended for The App Maker builds solutions to simplify, automate, and transform tasks and processes for themselves and their team where they have deep expertise in the solution business domain. They have basic data modeling, user experience design, requirements analysis, and process analysis skills. The App Maker creates and enforces business processes, structures digital collection of information, improves efficiency of repeatable tasks, and automates business processes. The App Maker uses the Maker tools of Power Platform to solve business problems. They may use advanced features of Microsoft apps and third-party productivity tools. The App Maker is aware of the capabilities and limitations of available tools and understands how to apply them. The App Maker is self-directed, and solution focused. They may not have formal IT training but are comfortable using technology to solve business problems with a personal growth mindset. They understand the operational need and have a vision of the desired outcome. They approach problems with phased and iterative strategies. This course will teach you how to build apps with low-code techniques to simplify, automate, and transform business tasks and processes using Microsoft Power Platform. This course contains a 1-day Applied Workshop. This workshop will allow you to practice your App Maker skills by creating an end-to-end solution to solve a problem for a fictitious company. The solution will include a Microsoft Dataverse database, Power Apps canvas app, and Power Automate flows. 1 - Get started with Microsoft Power Platform for app makers Identify components Create apps Get started with Microsoft Dataverse Work with Copilot in Microsoft Power Platform 2 - Create tables in Dataverse Table characteristics Table relationships Dataverse logic and security Dataverse auditing Dual-write vs. virtual tables 3 - Create and manage columns within a table in Dataverse Define columns in Microsoft Dataverse Column types in Microsoft Dataverse Add a column to a table Primary name column Restrictions that apply to columns in a table Create an auto numbering column Create an alternate key 4 - Load/export data and create data views in Dataverse View data in a table Create or edit views of data in a table Dataverse data import options Load data into a table Dataverse data export options Export Add, update, or delete data in a table by using Excel Import data using Power Query 5 - Export data from Dataverse and use Microsoft Excel to edit records Export data to Excel Edit and update data in Excel 6 - Get started with Microsoft Dataverse for Teams Dataverse for Teams vs Dataverse Provision your first Dataverse environment Create your first table to store data 7 - Build your first app with Power Apps and Dataverse for Teams Create your first app with the hero template Customize your app with Power Apps Studio Publish your app Install template apps 8 - Build your first workflow with Power Automate and Dataverse for Teams Types of workflows that Power Automate can build in Dataverse Schedule a flow 9 - Create reports with Power BI and Dataverse for Teams Connect to and transform Dataverse for Teams data from Power BI Create a Power BI report Publish the report Share the data 10 - Get started building with Power BI Use Power BI Building blocks of Power BI Tour and use the Power BI service 11 - Explore what Power BI can do for you What can I do with the Power BI service as a consumer? View content in the Power BI service Collaborate and share in Power BI Find and view dashboards and reports 12 - Create and manage workspaces in Power BI Distribute a report or dashboard Monitor usage and performance Recommend a development life cycle strategy Troubleshoot data by viewing its lineage Configure data protection 13 - Manage semantic models in Power BI Use a Power BI gateway to connect to on-premises data sources Configure a semantic model scheduled refresh Configure incremental refresh settings Manage and promote semantic models Troubleshoot service connectivity Boost performance with query caching (Premium) 14 - Create dashboards in Power BI Configure data alerts Explore data by asking questions Review Quick insights Add a dashboard theme Pin a live report page to a dashboard Configure a real-time dashboard Set mobile view 15 - Implement row-level security Configure row-level security with the static method Configure row-level security with the dynamic method 16 - Create dashboards in Power BI Configure data alerts Explore data by asking questions Review Quick insights Add a dashboard theme Pin a live report page to a dashboard Configure a real-time dashboard Set mobile view 17 - Secure, publish, and share data in Power BI Share and use reports in Power BI Row-level security Publish a report to a Power BI workspace Share reports and user experience Protect data in Power BI Data refresh and alerts 18 - Embed Power BI content Embed Power BI reports Embed other Power BI content types Optimize the embedding experience 19 - How to build your first model-driven app with Dataverse Model-driven apps, powered by Microsoft Dataverse Explore sample apps 20 - Get started with model-driven apps in Power Apps Introducing model-driven apps Components of model-driven apps Design model-driven apps Incorporate business process flows 21 - Configure forms, charts, and dashboards in model-driven apps Forms overview Form elements Configure multiple forms Use specialized form components Configure views overview Configure grids Create and edit views Configure charts overview Dashboards overview Use interactive streams and tiles 22 - Manage Dynamics 365 model-driven app settings and security Configure role-based security Manage teams and business units Explore settings and customizations 23 - Use specialized components in a model-driven form Create business process flows Embed a canvas app in a model-driven form Add a timeline in a model-driven form Create a report in a model-driven form 24 - Get started with Power Apps canvas apps Start Power Apps Power Apps data sources Use Power Apps with Power Automate and Power BI Designing a Power Apps app 25 - Customize a canvas app in Power Apps Improve your app by making basic customizations Explore controls and screens in canvas apps 26 - How to build the User Interface in a canvas app in Power Apps Use themes to quickly change the appearance of your app Brand a control Icons Images Personalization Build for phones or tablets 27 - Navigation in a canvas app in Power Apps Understanding navigation The Navigate and Back functions More ways to use the Navigate function 28 - Manage apps in Power Apps Power Apps review 29 - Build a mobile-optimized app from Power Apps Learn about mobile-optimized apps Identify components to make a canvas app mobile-optimized Create a mobile-optimized app that uses responsive designs Identify performance considerations for a mobile-optimized canvas app 30 - Use and understand Controls in a canvas app in Power Apps Core properties of controls Entering and displaying data with text controls Additional controls for enhancing your app's usability Media Modern controls Work with component libraries 31 - Create formulas to change properties in a Power Apps canvas app Formulas overview Use a formula to modify the format of controls Use formulas to perform calculations Use a control to modify the property of other controls Conditional formatting Functions for validating data 32 - Use imperative development techniques for canvas apps in Power Apps Imperative versus declarative development The three types of variables in Power Apps Global variables Contextual variables Collections Additional variable concepts 33 - Manage apps in Power Apps Power Apps review 34 - Create formulas to change properties in a Power Apps canvas app Formulas overview Use a formula to modify the format of controls Use formulas to perform calculations Use a control to modify the property of other controls Conditional formatting Functions for validating data 35 - Create formulas to change behaviors in a Power Apps canvas app Formulas and functionality Understanding true and false Understanding control behaviors and actions Performing multiple actions in a formula Control the display mode through a formula Use controls and functions to create a dynamic formula 36 - Author a basic formula that uses tables and records in a Power Apps canvas app Records and tables Using the Table function Store a table Filter your table Use the lookup function to return a record Additional table functions 37 - Build a canvas app for a real estate solution with Copilot in Power Apps 38 - Get started with Power Automate Introducing Power Automate Create your first flow Troubleshoot flows 39 - Build approval flows with Power Automate Provide solutions to real-world scenarios. 40 - Build flows to manage user information 41 - Power Automate's deep integration across multiple data sources 42 - Use the Admin center to manage environments and data policies in Power Automate Administer flows Export and import flows Learn how to distribute button flows 43 - Use AI Builder in Power Automate AI Builder in Power Automate saves time Advanced usage of AI Builder in Power Automate 44 - Optimize your business process with process advisor Get familiar with process advisor Create your first recording Edit recordings and group actions Analyze recordings and interpret results Automation recommendations 45 - Optimize your business process with process advisor Get familiar with process advisor Create your first recording Edit recordings and group actions Analyze recordings and interpret results Automation recommendations 46 - Build flows for a real estate solution using Copilot in Power Automate When to use Copilot in Power Automate 47 - Use Dataverse triggers and actions in Power Automate Dataverse triggers Query data Create, update, delete, and relate actions 48 - Create tables in Dataverse Table characteristics Table relationships Dataverse logic and security Dataverse auditing Dual-write vs. virtual tables 49 - Create and manage columns within a table in Dataverse Define columns in Microsoft Dataverse Column types in Microsoft Dataverse Add a column to a table Primary name column Restrictions that apply to columns in a table Create an auto numbering column Create an alternate key 50 - Get started with Power Apps canvas apps Start Power Apps Power Apps data sources Use Power Apps with Power Automate and Power BI Designing a Power Apps app 51 - How to build the User Interface in a canvas app in Power Apps Use themes to quickly change the appearance of your app Brand a control Icons Images Personalization Build for phones or tablets 52 - Get started with Power Automate Introducing Power Automate Create your first flow Troubleshoot flows 53 - Challenge Project - Build a booking requests app with Power Apps and Power Automate Prepare
SAFe® Lean Portfolio Management: In-House Training Create a culture of innovation, flexibility, and speed where all people in the portfolio can effectively execute as one unified team. In this course, you will gain the practical tools and techniques necessary to implement the Lean Portfolio Management functions of Strategy and Investment Funding, Agile Portfolio Operations, and Lean Governance. You will have the opportunity to capture the current and future state of the portfolio with the Portfolio Canvas tool and identify important business initiatives for achieving the future state. You'll be able to establish portfolio flow with the Portfolio Kanban and prioritize initiatives for maximum economic benefit. The course also provides insights on how to establish Value Stream Budgets and Lean Budget Guardrails and measure the Lean portfolio performance. What you will Learn Describe the importance of LPM Connect the portfolio to enterprise strategy Implement Lean budgeting and guardrails Establish portfolio flow with the Portfolio Kanban Support operational excellence with APMO and CoPs Coordinate Value Streams Measure the LPM performance Build a plan for LPM implementation Introducing Lean Portfolio Management (LPM) Establishing Strategy and Investment Funding Applying Agile Portfolio Operations Applying Lean Governance Implementing the LPM function
SAFe® Lean Portfolio Management: Virtual In-House Training Create a culture of innovation, flexibility, and speed where all people in the portfolio can effectively execute as one unified team. In this course, you will gain the practical tools and techniques necessary to implement the Lean Portfolio Management functions of Strategy and Investment Funding, Agile Portfolio Operations, and Lean Governance. You will have the opportunity to capture the current and future state of the portfolio with the Portfolio Canvas tool and identify important business initiatives for achieving the future state. You'll be able to establish portfolio flow with the Portfolio Kanban and prioritize initiatives for maximum economic benefit. The course also provides insights on how to establish Value Stream Budgets and Lean Budget Guardrails and measure the Lean portfolio performance. What you will Learn Describe the importance of LPM Connect the portfolio to enterprise strategy Implement Lean budgeting and guardrails Establish portfolio flow with the Portfolio Kanban Support operational excellence with APMO and CoPs Coordinate Value Streams Measure the LPM performance Build a plan for LPM implementation Introducing Lean Portfolio Management (LPM) Establishing Strategy and Investment Funding Applying Agile Portfolio Operations Applying Lean Governance Implementing the LPM function
Advanced Kibana training course description This training course is aimed at users who already have some experience with Kibana, who are looking to further their knowledge. What will you learn Lens Timelion Maps Custom Visualisations with Vega Canvas Filters and Controls Drilldown and Dashboards KQSL and ElasticQueries Scripted and RunTime Fields Alerts and Alarms Advanced Kibana training course details Who will benefit: Users who already have some experience with Kibana, who are looking to further their knowledge. Prerequisites: None Duration 1 day Advanced Kibana training course contents Topics Lens Visualisation types (tables,bars,charts) Category breakdown Adding multiple metrics Using formulas in metrics Labels Adding reference layer Limitations Visualise Library Timeseries, Metrics Different types of aggregations Maps GeoMapping Heat Maps Using ES index as data source Visualisation, tool tips Custom Visualisations with Vega Introduction to vega scripting Canvas Widgets and Texts Elasticsearch SQL Canvas Expressions Filters and Controls Dropdown filters Ad-hoc filters Searchbar filters Drilldown Dashboards Linking one dashboard to another KQSL and ElasticQueries Bool Query AND/OR Phrase Part match vs keyword search Wildcard search Scripted and RunTime Fields Creating ad-hoc calculated fields using scripts Performance issues Alerts and Alarms Query Based Formatting output Connector types(email,index,teams etc)
This is a hands-on course that comes packed with source code ready for you to use through the lessons. The objective of this course is to guide you through the essentials of HTML5 Canvas drawing and how it works. You must have prior coding experience in JavaScript and HTML and familiarity with web development before getting started with this course.
[Updated: February 2024] ***Best Deal of the Market. Only for Today*** In today's interconnected world, over 95% of UK-based businesses recognise the paramount importance of online presence. Digital marketing isn't just the future - it's the beating heart of modern business strategies. The goal of our Digital Marketing Masterclass is to develop 'Ideas That Work' from advertising creative experts. To make your Digital Marketing learning journey easier, we are offering you the FIRST 3 LESSONS for FREE. Digital marketing has become exceptionally valuable as it has the potential to grow your business from scratch and make a profit in the process. The Advanced Diploma in Digital Marketing (Social Media Marketing, Google Ads, PPC, & SEO) Diploma Level 7 course includes all the most up-to-date digital marketing strategies and helps you to promote your products or business using various digital platforms. Through this course, you will equip yourself with a solid foundation in the core concepts of digital marketing. It ensures you learn all the essential skills and knowledge needed to exceed as a digital marketing professional. Broaden your knowledge of the basics of digital marketing, including the elemental characteristics, and its various strategies that empower you to develop and implement digital marketing strategies and drive sales eventually. The Advanced Diploma in Digital Marketing at QLS Level 7 now comes to you, accompanied by the 10 Premium Courses Bundle. Courses Are: Course 01: Level 7 Advanced Diploma in Digital Marketing (Email Marketing, Copywriting, Blogging. YouTube, Twitter, Instagram, Video Marketing) Course 02: Strategic Marketing & Planning Course 03: Content Management Strategy Course 04: Creative Writing Course 05: Digital Marketing - Growth Hacking Course 06: Pay per Click (PPC) Marketing for Lead Generating Course 07: Mobile Marketing Course 08: Search Engine Optimisation (SEO) Course 09: Sales and Marketing Course 10: Communication Skills What You Learn From This Advanced Diploma in Digital Marketing (Social Media Marketing, Google Ads, PPC, & SEO) Course: With the aid of this Digital Marketing course curriculum, you will gain a multitude of skills & knowledge, including - Familiarise yourself with the arena of digital marketing. Know what the target audience is & how to find your audience. Delve into the basics of brand identity & brand identity tools. Understand the importance of websites & email marketing. Have a clear knowledge of copywriting, blogging & SEO. Career Progression of Advanced Diploma in Digital Marketing (Social Media Marketing, Google Ads, PPC, & SEO): After completing this Advanced Diploma in Digital Marketing (Social Media Marketing, Google Ads, PPC, & SEO) course, you can progress towards- Professional Diploma in Digital Marketing Digital Marketing Professional Diploma CIM Diploma in Professional Digital Marketing COB Certified Digital Marketing Manager Student Testimonials - What Our Students Say! ''Extremely good delivery and very educational!!!'' Reviewed by Benampeta Lukuna ''Hi, I hope you are well my name is Rukhsar this is my first time starting an online course it's very very amazing and interesting'' Reviewed by Rukhsar Hanif ''Excellent content. Very well explained. Certainly recommended.'' Reviewed by Denis Jackson So enrol now in this Digital Marketing course today to Advance your career! The relevance & intricacy of digital marketing roles has grown over time. Course Curriculum of Level 7 Advanced Diploma in Digital Marketing Introduction Define Your Business & Target Audience Brand Identity Websites Email Marketing Copywriting, Blogging & SEO YouTube Video Marketing Facebook Groups Facebook Pages Facebook Ads Facebook Retargeting Facebook For Local Business (SMM) Google AdWords Twitter Instagram Pinterest LinkedIn Periscope Social Media Live Streaming Podcasting Quora Google Analytics Conclusion CPD 300 CPD hours / points Accredited by CPD Quality Standards Module 01: Introduction to Digital Marketing 14:35 1: Introduction Video Preview 01:19 2: Digital Marketing Preview 02:16 3: DMM Intro Preview 01:33 4: Digital Marketing Strategy in 10 Minutes Preview 09:27 Module 02: Define Your Business & Target Audience 44:53 5: Define your Purpose 04:03 6: Case Studies 05:26 7: Positioning Your Brand 04:06 8: Case studies - Positioning 03:06 9: Unique Selling Proposition 06:01 10: Personality 01:50 11: Case Study - Personality 06:54 12: Find Your Audience 04:57 13: Validate Your Business 08:30 Module 03: Brand Identity 51:37 14: Intro Brand Identity 02:27 15: Case Study - 3 Company Styles 04:44 16: Free Branding Tools 07:40 17: Learn Canva in 10 Minutes 10:35 18: Learn Photoshop in 30 Minutes 26:11 Module 04: Websites 3:03:56 19: Intro to Websites 03:40 20: Choose a Domain Name 05:29 21: Intro to WordPress Lessons 01:15 22: Purchase Hosting and Install WordPress 06:00 23: Navigating WordPress 06:07 24: Install and Activate Themes 06:34 25: Add a Static Home Page 04:09 26: Editing a Page & Change the Site Title 17:06 27: Add and Edit a Menu 05:42 28: Publishing website 01:41 29: Writing a New Post & Organizing Your Blog 09:13 30: Blog Page Design - Excerpts vs Full Content 01:01 31: YouTube Videos 03:44 32: Customise the Sidebar 04:47 33: Add Site Icon with a Plugin 02:26 34: Make Your Website Responsive and Mobile Friendly 03:28 35: Customise Footer Information 03:28 36: Find, Install, and Activate Plugins 07:19 37: Backing Up Your Website 04:48 38: Securing Your Site from Attackers 04:52 39: Make Your Site SEO Friendly 05:37 40: Make Your Website Faster 04:34 41: See your Google Analytics in WordPress 05:06 42: Block Spam with Akismet 03:14 43: Pretty Link Redirects & Link Shortener 02:59 44: WordPress Commenting Systems & Plugins 05:08 45: Secure Contact Forms in WordPress 07:08 46: Free Email Marketing in WordPress 10:59 47: Add Social Sharing Buttons 06:51 48: What Pages Do You Need- 08:42 49: Design a Home Page that Works 08:54 50: The Start Here and About Page 06:15 51: The Resource Page 05:40 Module 05: Email Marketing 58:54 52: Email Marketing 06:52 53: Email Marketing Tools 04:10 54: Lead Magnets 07:27 55: Where to put opt-in forms 05:35 56: Segmenting and Tagging Your Subscribers 05:11 57: Email Sequences 13:06 58: Better Email Subject Lines 03:54 59: Using Analytics to Improve Emails 07:06 60: Case Study - 100 Subscribers in Less Than 1 Week 05:33 Module 06: Copywriting, Blogging & SEO 39:51 61: Copywriting Basics 02:20 62: A.I.D.A- 05:31 63: Case Study of a Sales Page 08:15 64: 10 Commandments of Copywriting 06:42 65: Write Better Headlines 05:21 66: Write Quality Articles 06:18 67: Optimize Your Website SEO 05:24 Module 07: YouTube 1:36:12 68: Digital Marketing - Intro to YouTube 06:39 69: Digital Marketing - Case Study - YouTube Sales Funnel 04:43 70: YouTube SEO - Watch Time vs. Views 03:34 71: Keyword Research for YouTube Videos 05:39 72: Start Your New Channel 03:00 73: Channel Art and Icon 07:23 74: Channel Description 02:42 75: Customise Your Channel Design 04:27 76: Add a Channel Trailer 02:29 77: YouTube Channel Settings and Verification 06:35 78: Upload Defaults, Featured Content, and Channel Branding 06:02 79: Uploading Videos + Titles, Tags, Description 11:41 80: Cards and End Screens 07:53 81: Use YouTube Analytics to Grow Your Channel 06:09 82: Quickly Respond to Fans with the Community Tab 02:18 83: Live Streaming with YouTube Live 04:07 84: Free Music on YouTube Live 01:38 85: Create a YouTube Ad. 05:10 86: Spy on Competition with Social Blade 04:03 Module 08: Video Marketing 2:05:26 87: Digital Marketing - Intro to Video 03:36 88: Video Equipment for Beginners 08:29 89: Tools to Make Your Videos More Professional 04:02 90: Structure a Video that Sells 04:19 91: Intro to Video Production Bootcamp 01:04 92: What Makes a Great Video? 03:18 93: What Type of Video Should You Make? 02:48 94: Great Video Ideas 05:05 95: Plan Your Video 03:31 96: The Pre-Production Checklist 04:04 97: Introduction 01:35 98: Camera Options 06:00 99: Microphone Options 04:37 100: Lighting Options 01:56 101: Editing Tools 02:11 102: Exposing Your Shot 05:26 103: Compose Your Shots 04:26 104: Filming Yourself 01:09 105: Getting the Right Shot 03:43 106: Choose a Background 02:32 107: My Office Video Setup 02:55 108: Exposing with DSLR and Mirrorless Cameras 06:31 109: Focus with DSLR and Mirrorless Cameras 02:36 110: Know Your Lenses 03:36 111: Shoot with Your Webcam 05:50 112: Stabilise Your Shots 02:58 113: Record Great Screencast Videos 04:21 114: Choose the Right Microphone 03:21 115: Record Better Audio in Any Environment 01:27 116: Lavalier Microphones 02:48 117: Shotgun Microphones 00:55 118: Recording Audio with Your Computer 01:33 119: Lighting for Video 01:04 120: Use Natural Light 04:14 121: Three-Point Lighting 07:26 Module 09: Facebook Groups (Social Media Marketing) 25:44 122: Digital Marketing - 9.1 Intro to FB Groups 02:20 123: Create Your Group - Walk Through 11:26 124: Tips for a More Engaged Facebook Group 08:24 125: Scheduling Posts, Live Video, and More 03:34 Module 10: Facebook Pages (Social Media Marketing) 2:23:58 126: Why Facebook Pages are Important for your Business 06:27 127: Creating a Stunning Facebook page for your business 08:57 128: Adding Essential Information to your Facebook Page 10:39 129: Selecting your Profile Image 04:30 130: Creating Professional Facebook Cover Image for your Pages 12:04 131: Creating a Captivating Facebook Page Description Using The Ads. 02:43 132: Getting Your Facebook Page Username 02:46 133: Facebook Page Apps to Increase Fans Engagement 08:05 134: Top 9 Ways to Monetise Your Facebook Page 11:59 135: Exploring Publishing Tools 10:12 136: Scheduling Facebook Posts 04:43 137: Follow Your Competitors on Facebook 11:01 138: How to guarantee your fans see all your posts 09:33 139: Facebook Insights 12:19 140: Promoting your Facebook Page 10:34 141: Four Unlimited Sources of Royalty Free Image 12:19 142: Turn Any Image Into a Clickable Facebook Post 05:07 Module 11: Facebook Ads (Social Media Marketing) 1:01:29 143: Introduction to Facebook Ads 01:13 144: Introduction to the Facebook Ads Manager 05:54 145: Setting up your Facebook payment account 01:54 146: Defining your Facebook Target Audience 12:14 147: Level 1 - Creating the Ad 05:24 148: Level 1 - Boosting Your Post 08:37 149: Level 2 - Creating Your Ad in the Ads Manager 11:24 150: Tips to Have Your Ad Approved 03:25 151: Analysing Results 11:24 Module 12: Facebook Retargeting (Social Media Marketing) 51:08 152: The Importance of Facebook Retargetting 04:51 153: Creating a Facebook Pixel 05:29 154: Installing Pixel In WordPress 04:32 155: Installing Pixel In A Non-WordPress Website 02:27 156: Pixel Testing 03:53 157: Creating Your First Audience With Pixel 03:41 158: Facebook Pixel Advanced Audience Creation 13:46 159: Message - Your Audience Is Too Small 01:50 160: Creating Your Optimised Fb Ad With The Pixel 10:39 Module 13: Facebook For Local Business (SMM) 34:48 161: How Facebook Ads Can Help Your Local Business 06:24 162: The Plan For Your Local Business 07:33 163: Reaching People Around Your Business 10:23 164: Creating Your Local Business Ad 10:28 Module 14: Google AdWords 1:10:12 165: Digital Marketing - Google AdWords For Your Business 01:47 166: How AdWords Works 02:54 167: Example Of Ads That We Are Creating 04:28 168: Setting Up Your Adwords Account 06:51 169: Exploring The AdWords Interface 05:14 170: Discovering The Best Keywords 11:15 171: Creating A Google AdWords Search Campaign 06:10 172: Creating An Ad Group And Adding Keywords 03:43 173: Selecting Your Audience 03:33 174: Choosing Your Bid Setting For Google AdWords 04:21 175: Finalising Your Google AdWords Ad 06:15 176: Managing Your Google Ads Campaigns And Analytics 03:02 177: Creating A YouTube Ad With Google AdWords 09:57 178: Your Next Steps 00:42 Module 15: Twitter (Social Media Marketing) 1:37:45 179: Digital Marketing - The Way Twitter Can Help Your Business Growth 01:47 180: Choosing The Best Username Or Twitter Handle 06:27 181: 4 Tips For Choosing Your Twitter Handle 02:01 182: Creating A Twitter Account 04:53 183: Creating An Outstanding Twitter Profile Page 03:46 184: Adding Your Profile And Header Photo 09:33 185: Writing An Optimised Bio 10:43 186: Pin The Most Important Tweet For Your Bio 06:18 187: Connecting With Other Influencers 05:37 188: Twitter Hashtags 05:42 189: Growing Your Twitter Presence With Jooicer 09:04 190: Add Twitter Buttons To Your Website 09:58 191: Add Twitter Widgets To Your Website 06:51 192: Twitter Ads - Creating Your Ads Account and Campaign 09:32 193: Twitter Ads - Adding your Payment Method 01:21 194: Twitter Ads - Creating other Twitter ads 02:20 195: Twitter Ads - Promoting a Tweet 01:52 Module 16: Instagram (Social Media Marketing) 1:15:38 196: Instagram for Business: Defining The Strategy 04:21 197: Create an Instagram for Business profile 03:52 198: Building a Killer Instagram Profile 02:42 199: Building a Killer Instagram Profile - 2 03:57 200: Building a Killer Instagram Profile - 3 05:04 201: Building a Killer Instagram Profile - 4 01:33 202: Accessing the Ads Manager 02:37 203: Creating your First Instagram Ad 03:58 204: Creating Your Instagram Ad 07:45 205: Important Tips to Have a Successful Ad on Instagram 04:47 206: Mistake 1 02:19 207: Mistake 2 01:14 208: Mistake 3 02:01 209: Mistake 4 00:52 210: Mistake 5 01:04 211: Mistake 6 00:51 212: Tools To Create Instagram Photos 04:22 213: Creating Viral Instagram Photos 13:20 214: Adding Your Logo or Website to your Instagram Post 04:51 215: Instagram Live and Instagram Stories 04:08 Module 17: Pinterest (Social Media Marketing) 1:15:02 216: Why Pinterest And How It Can Your Business Grow 03:16 217: Opening A Pinterest Business Account 03:15 218: Linking Pinterest With Your Website 04:56 219: Linking Pinterest With Other Social Media Platforms 02:04 220: Optimising Your Pinterest Profile 08:52 221: Creating Boards 09:22 222: Using Secret Boards 03:00 223: The Powerful Pinterest Notification 01:18 224: Adding Pinterest Chrome Extension 03:22 225: Adding Pinterest To Your Website 13:37 226: Pinterest Ads - Getting started 03:03 227: Pinterest Ads Pinterest Ads Panel Overview 02:46 228: Creating a Pinterest Ad 13:06 229: Creating Pinterest Ads Fast 03:05 Module 18: LinkedIn (Social Media Marketing) 1:27:54 230: Digital Marketing - Welcome to LinkedIn Marketing 01:40 231: Setting Up a LinkedIn Account 06:26 232: Adding Experience & Skills to Your LinkedIn Account 03:21 233: Adding A Professional Background Photo 04:07 234: Adding Media To Your LinkedIn URL 06:00 235: Changing Your LinkedIn URL 03:30 236: Adding Your Website To LinkedIn 06:23 237: Creating Shareable Content On LinkedIn 04:08 238: LinkedIn Company Pages Examples 05:29 239: Creating a LinkedIn Company Page 02:22 240: Managing Your LinkedIn Company Page 07:08 241: Getting $50 in LinkedIn Ads Credits 02:40 242: LinkedIn Ads Introduction 02:57 243: Creating a LinkedIn Sponsored Content Ad. 11:47 244: Waiting for LinkedIn Ad Approval 00:46 245: Creating a LinkedIn Text Ads Campaign 06:52 246: Creating a LinkedIn Sponsored In Mail Campaign 09:09 247: LinkedIn Campaign Manager 03:09 Module 19: Periscope (Social Media Marketing) 06:18 248: What is Periscope 01:07 249: Optional Equipment 05:11 Module 20: Social Media Live Streaming 1:55:04 250: Basic Equipment for Social Media Streaming 08:42 251: Planning An Irresistible Live Streaming Session 09:43 252: Facebook Live Basics 05:03 253: Facebook Live Session From Your Smartphone 06:47 254: Sharing Your Facebook Live Sessions 02:43 255: Three Ways To Reuse Your Facebook Live Sessions 05:27 256: YouTube Live Basics 02:18 257: Running A YouTube Live From Your Smartphone 04:40 258: Instagram Live 04:08 259: Periscope Live 03:17 260: Introduction to OBS Broadcaster Software 03:19 261: Setting up your OBS Software 10:57 262: Using OBS Studio Mode 04:52 263: Facebook Live Streaming with OBS 12:24 264: YouTube Live Streaming with OBS 06:59 265: Simultaneous Streaming to Facebook, YouTube and Periscope 15:41 266: Other Awesome Software For Live Streaming 08:04 Module 21: Podcasting 22:53 267: Podcasting Intro 03:11 268: Podcasting Tools 06:41 269: Hosting Your Podcast with Libsyn 07:28 270: Submitting Podcast to iTunes 02:18 271: Validate Your Podcast Work 00:57 272: Outsourcing Your Podcast Work 02:18 Module 22: Quora 06:17 273: Quora Basics 02:57 274: Finding the Right Questions, and Optimize Your Answer 03:20 Module 23: Google Analytics 42:51 275: Setting Up Google Analytics 05:33 276: Navigating the Google Analytics Dashboard 06:34 277: Know Your Audience with Analytics 05:35 278: User Acquisition and Behavior Flow 13:18 279: See Where Visitors Click with Page Analytics 04:41 280: User Behavior and Site Speed 04:00 281: Setting Up Goals 03:10 Module 24: Conclusion 02:46 282: Conclusion 01:46 283: Final Words. 01:00 Assessment - Digital Marketing (Optional) 02:00 284: Assignment On - Advanced Diploma in Digital Marketing at QLS Level 7 02:00 Order Your Certificate 02:00 285: Order Your CPD Certificate 01:00 286: Order Your QLS Endorsed Certificate 01:00 Additional Resources 01: Strategic Marketing & Planning 1:55:03 287: Module 1: An Introduction to Strategic Planning 08:25 288: Module 2: Development of a Strategic Plan 15:12 289: Module 3: Strategic Planning for Marketing 08:01 290: Module 4: Strategic and Marketing Analysis 09:25 291: Module 5: Internal Analysis 15:54 292: Module 6: External Analysis 15:03 293: Module 7: Market Segmentation, Targeting and Positioning 11:55 294: Module 8: Approaches to Customer Analysis 15:09 295: Module 9: Approaches to Competitor Analysis 15:59 Additional Resources 02: Content Management Strategy 1:49:59 296: Module 01: Introduction to Content Management 08:32 297: Module 2: Content Management System (CMS) 17:14 298: Module 03: Basics of Content Management Systems 17:52 299: Module 04: Content Strategy 17:37 300: Module 05: Content Marketing 15:30 301: Module 06: Content Marketing Tools and Tactics 16:49 302: Module 07: Content Marketing Strategy 16:25 Additional Resources 03: Digital Marketing - Growth Hacking 12:35 303: Growth Hacking 12:35 Additional Resources 04: Pay per Click (PPC) Marketing for Lead Generating 17:43 304: Lead Generation using PPC Campaigns 03:19 305: Purpose of PPC Marketing 03:15 306: Benefits of PPC Marketing 03:43 307: Use of 20+ PPC & Lead Generations Tools 02:53 308: Planning of Cost & Budgeting of PPC & Google Ads 04:33 Additional Resources 05: Search Engine Optimisation (SEO) 15:46 309: Search Engine Optimization 15:46 Additional Resources 06: Mobile Marketing 13:55 310: Mobile Marketing 13:55 Additional Resources 07: Sales and Marketing 16:44 311: Sales & Marketing 16:44 Additional Resources 08: Communication Skills 13:13 312: Communication Skills 13:13 Who is this course for? This bundle is ideal for: Students seeking mastery in this field Professionals seeking to enhance their skills Anyone who is passionate about this topic Requirements A stable internet or data connection for your learning device is needed to enrol in this Course. Career path Digital Marketing course will help you to bloom as- Content Strategist/Copywriter: £25,000 - £45,000 Per Year Digital Marketer: £25,000 - £50,000+ Email Marketer: £25,000 - £45,000 SEO & SEM Expert: £30,000 - £60,000+ Social Media Manager: £25,000 - £50,000+ Certificates Certificate Accredited by CPDQS Digital certificate - Included After completing all gift courses you are enable to order your Free PDF Certificates from us. Advanced Diploma at QLS Level 7 Hard copy certificate - £139 Show off Your New Skills with a Certificate of Completion After successfully completing the course, you can order an original hardcopy certificate of achievement endorsed by the Quality Licence Scheme. The certificate will be home-delivered, with a pricing scheme of - 139 GBP inside the UK 149 GBP (including postal fees) for International Delivery Certificate Accredited by CPDQS Upon finishing the course, you need to order to receive a Certificate Accredited by CPDQS that is accepted all over the UK and also internationally. The pricing schemes are: 29 GBP for Printed Hardcopy Certificate inside the UK 39 GBP for Printed Hardcopy Certificate outside the UK (International Delivery)
Course description Figma is an industry leading web-based design tool that allows you to create user interfaces for any screen type or size, collaborate on those designs in real-time and build interactive prototypes suitable for user testing. Figma is a visual design tool so there’s no coding involved. Design is achieved by adding, combining and styling shapes, text and images on a canvas or ‘Frame’. We run 2 consecutive Figma training days, the second day building on the practical activities from the first. You can attend just the first day. Attending just the second day is only recommended if you’re already very comfortable with the Figma interface. Day 1: Basic Figma design and collaboration For beginners with no prior experience with Figma who want to understand the basics, be able to create their own designs, share, collaborate and even iterate on the designs of others. You will learn: How to navigate the Figma interface. How to create your own designs by: Setting up a design file. Setting up the screen type you want to design and add grids and guides. Adding and modifying basic shapes and text to create user interface elements. How to save text and colour styles for reuse. How to create reusable components. How to use the ‘auto layout’ feature to promote tidy, consistent and usable design. How to collaborate on designs by sharing screens and commenting on designs. A brief introduction to prototyping: What’s possible. What’s not. Day 2: Component variants, design systems and prototyping This session will cover the more sophisticated aspects of Figma use such as: How to use component variants to create: Interaction styles such as hover and mouse down states ‘Flavours’ of a widget such as primary and secondary button styles. Toggleable elements within a widget such as buttons or bullets within a product card. How to turn a collection of components into a basic design system. Prototyping fundamentals: How to make journeys clickable. How to introduce animations. Tips and tricks for effective user testing. The limitations of Figma prototyping Is it for you? With no experience of Figma necessary, this course is suitable if: If you’re involved with creating or curating digital experiences. if you want to turn your design ideas into something tangible. If you work with Figma designers and want to understand the ‘art of the possible’. If you want to collaborate with your team on Figma projects. Learning objectives After completing day 1 you will be able to: Understand the Figma user interface. Create mobile and desktop interface designs. Effectively collaborate remotely. Share designs and gather feedback. Use auto layout to promote consistent and usable designs. Understand Figma’s role in user experience design, and its limitations. After day 2 you will be able to: Understand how design systems are set up and used. Create component variants for use in your own design system. Use that design system to efficiently create a user journey. Create a prototype suitable for user testing.