Talking HTML

Tom Norman

This is an audio online podcast thing for the beginner coder. HTML, CSS, WordPress and other topics will be discussed as well as video tutorials and live feeds. Maybe even some interviews.

  • 1 hour 22 minutes
    Pathfinder Session 14: Bard Door Reach-Around

    Big Daddy takes the team on a field trip to show them a ghost, but is it a trap? Only the ghost knows. 

    A giant slug was the source of the moan

    Clawing Kain right down to the bone

    Upon death, an explosion

    Raining acidic corrosion

    Until Abed dropped like a stone.

    Wanderer’s Guide: https://wanderersguide.app/
    Norm (Abed Klatch): https://wanderersguide.app/profile/characters/303945
    Genius (Crew): https://wanderersguide.app/profile/characters/370156
    Kooch (Lady Syl): https://wanderersguide.app/profile/characters/303934
    Rick (Jacob Kain): https://wanderersguide.app/profile/characters/324089
    Patreon: https://patreon.com/2nerds1quest

    The post Pathfinder Session 14: Bard Door Reach-Around appeared first on Schaffen Creative.

    12 November 2023, 6:56 pm
  • 1 hour 23 minutes
    Pathfinder Session 13: Too Much Puke, Not Enough Dixie Cups

    The team delves deeper through the basement and finds themselves confronted by Big Daddy. Surely he can’t be one of their real fathers, can he?  

    Wanderer’s Guide: https://wanderersguide.app/
    Norm (Abed Klatch): https://wanderersguide.app/profile/characters/303945
    Genius (Crew): https://wanderersguide.app/profile/characters/370156
    Kooch (Lady Syl): https://wanderersguide.app/profile/characters/303934
    Rick (Jacob Kain): https://wanderersguide.app/profile/characters/324089
    Patreon: https://patreon.com/2nerds1quest

    The post Pathfinder Session 13: Too Much Puke, Not Enough Dixie Cups appeared first on Schaffen Creative.

    5 November 2023, 6:54 pm
  • 1 hour 21 minutes
    Pathfinder Session 12: Wear Rubber Gloves Around Abed

    Now that the team has moved down a level, things start to get interesting. There’s definitely more than meets the eye in building.

    Since the party was tired and sore,
    We decided to rest and restore.
    Ready for the new day
    Without further delay
    We head down to a whole ’nother floor.

    Wanderer’s Guide: https://wanderersguide.app/
    Norm (Abed Klatch): https://wanderersguide.app/profile/characters/303945
    Genius (Crew): https://wanderersguide.app/profile/characters/370156
    Kooch (Lady Syl): https://wanderersguide.app/profile/characters/303934
    Rick (Jacob Kain): https://wanderersguide.app/profile/characters/324089
    Patreon: https://patreon.com/2nerds1quest

    The post Pathfinder Session 12: Wear Rubber Gloves Around Abed appeared first on Schaffen Creative.

    22 October 2023, 5:53 pm
  • 1 hour 31 minutes
    Pathfinder Campaign Session 11: Vial of Yum

    The team is finding that there are way more questions than answers as they traverse the Gauntlight. After finding the blood pool they decide to camp in the run down building instead of heading back to town, but will it be to their detriment?

    While exploring the Gauntlight at night
    Found a Brownie with his dancing light
    But then back in the tower
    A bloody statue with power
    That pulls blood from Kain’s skin, that’s not right!

    Wanderer’s Guide: https://wanderersguide.app/
    Norm (Abed Klatch): https://wanderersguide.app/profile/characters/303945
    Genius (Crew): https://wanderersguide.app/profile/characters/370156
    Kooch (Lady Syl): https://wanderersguide.app/profile/characters/303934
    Rick (Jacob Kain): https://wanderersguide.app/profile/characters/324089
    Patreon: https://patreon.com/2nerds1quest

    The post Pathfinder Campaign Session 11: Vial of Yum appeared first on Schaffen Creative.

    8 October 2023, 5:52 pm
  • 1 hour 23 minutes
    Just Chatting: The Shaquille O’Neal Of Birds

    The show is down 2 members, so Norm and Kooch take the reins and discuss their characters, leveling up, motivations and the story in general. They also discuss Obi-Wan Kenobi on Disney Plus, music and a few video game comments sprinkled in for good measure.

    Patreon: https://patreon.com/2nerds1quest
    Myron “Doug” Bloodbeak: https://www.dndbeyond.com/characters/61987353
    Krixis Rubicon: https://www.dndbeyond.com/characters/32635458
    Jakob “The Kid” d’Orien: https://www.dndbeyond.com/characters/62848067
    Twitter: https://twitter.com/2nerds1quest
    Website: https://SchaffenCreative.com/2-nerds-1-quest/
    Merch Store: https://2-nerds-1-quest.creator-spring.com/

    The post Just Chatting: The Shaquille O’Neal Of Birds appeared first on Schaffen Creative.

    27 June 2022, 12:30 pm
  • 36 minutes 10 seconds
    Eps 38: CSS Positioning

    The position property specifies the type of positioning method used for an element.

    There are five different position values: Static, Relative, Fixed, Absolute, Sticky

    Properties: top, bottom, left, right, z-index, clip (Clips an absolutely positioned element)

    Static

    HTML elements are positioned static by default. Static positioned elements are not affected by the top, bottom, left, and right properties. An element with position: static; is not positioned in any special way; it is always positioned according to the normal flow of the page:

    Relative

    positioned relative to its normal position. Setting the top, right, bottom, and left properties of a relatively-positioned element will cause it to be adjusted away from its normal position. Other content will not be adjusted to fit into any gap left by the element.

    Fixed

    positioned relative to the viewport, which means it always stays in the same place even if the page is scrolled. The top, right, bottom, and left properties are used to position the element. A fixed element does not leave a gap in the page where it would normally have been located.

    Absolute

    positioned relative to the nearest positioned ancestor (instead of positioned relative to the viewport, like fixed). However; if an absolute positioned element has no positioned ancestors, it uses the document body, and moves along with page scrolling.

    Sticky

    positioned based on the user’s scroll position. A sticky element toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport – then it “sticks” in place (like position:fixed).

    Overlapping Elements

    When elements are positioned, they can overlap other elements. The z-index property specifies the stack order of an element (which element should be placed in front of, or behind, the others). An element can have a positive or negative stack order. An element with greater stack order is always in front of an element with a lower stack order.

    Note: If two positioned elements overlap without a z-index specified, the element positioned last in the HTML code will be shown on top.

    Live Show on Twitch: twitch.tv/tommnorm
    YouTube: https://www.youtube.com/channel/UCtDzxDS1j6_5APr6bfQLQLQ
    Twitter: @schaffencreate & @tommnorman

    <html> <head> <link rel="stylesheet" href="screen.css"> </head> <body> <div id="box-1"> <h2>BOX 1</h2> <div id="box-2"> <h2>BOX 2</h2> <div id="box-3"> <h2>BOX 3</h2> </div> </div> </div> <div id="box-4"></div> </body> </html> /* CSS RESET https://dev.to/hankchizljaw/a-modern-css-reset-6p3 */ /* Box sizing rules */ *,*::before,*::after { box-sizing: border-box; } /* Remove default padding */ ul[class],ol[class] { padding: 0; } /* Remove default margin */ body,h1,h2,h3,h4,p,ul[class],ol[class],li,figure,figcaption,blockquote,dl,dd { margin: 0; } /* Reset default font size */ h1,h2,h3,h4,p,li,figcaption,blockquote,dl,dd { font-size: 10px; } /* Set core body defaults */ body { min-height: 100vh; scroll-behavior: smooth; text-rendering: optimizeSpeed; line-height: 1.5; } /* Remove list styles on ul, ol elements with a class attribute */ ul[class],ol[class] { list-style: none; } /* A elements that don't have a class get default styles */ a:not([class]) { text-decoration-skip-ink: auto; } /* Make images easier to work with */ img { max-width: 100%; display: block; } /* Natural flow and rhythm in articles by default */ article > * + * { margin-top: 1em; } /* Inherit fonts for inputs and buttons */ input,button,textarea,select { font: inherit; } /* Remove all animations and transitions for people that prefer not to see them */ @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } /* END CSS RESET */ #box-1 { display:block; border:1px solid #000; background: black; height: 500px; width:500px; margin: 10% 0 0 10%; } #box-1 h2 { font-size: 3em; color: white; } #box-2 { display:block; border:1px solid #000; background: white; height: 350px; width:350px; } #box-2 h2 { font-size: 3em; Color: black; } #box-3 { display:block; border:1px solid #000; background: purple; height: 175px; width:175px; } #box-3 h2 { font-size: 2.5em; color: white; } #box-4 { display:block; border:1px solid #000; background: orange; height: 1500px; width:500px; margin: 10% 0 0 10%; }

    The post Eps 38: CSS Positioning appeared first on Schaffen Creative.

    20 February 2021, 2:22 am
  • 49 minutes 38 seconds
    Eps 37: Welcome and WordPress Tutorial

    The first episode in quite a long time. The first 10 minutes or so are a general welcome statement and update while the last 35 mins are a tutorial on how to edit and update WordPress posts and pages. I’m a bit rusty so hopefully it’s not too hard on your ears.

    Look for more shows coming soon.

    WordPress and Gutenberg Tutorial by Packerland Websites: https://youtu.be/dKOgg7ULPB4
    Discord Channel: https://discord.gg/p5masyrFaW
    Patreon Support: Coming Soon
    Twitter: @tommnorman & @schaffencreate
    Website: SchaffenCreative.com
    Packerland Websites: PackerlandWebsites.com

    The post Eps 37: Welcome and WordPress Tutorial appeared first on Schaffen Creative.

    30 January 2021, 5:19 pm
  • 1 hour 18 minutes
    Session 10 – Captain Butterskull Himself

    In this session Aronan, Elli and Alphonse defend Butterskull Ranch from several Orcs and a White Dragon.

    Character creation tool: https://dndbeyond.com
    Aronan: Character Sheet
    Twitter: https://twitter.com/2nerds1quest
    Website: SchaffenCreative.com/2-nerds-1-quest/

    The post Session 10 – Captain Butterskull Himself appeared first on Schaffen Creative.

    17 May 2020, 8:40 pm
  • 6 minutes 56 seconds
    Eps 36: Document Object Model (DOM)

    Document Object Model (DOM)

    Taken from w3schools.com – The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of a document.”

    The W3C DOM standard is separated into 3 different parts:

    • Core DOM – standard model for all document types
    • XML DOM – standard model for XML documents
    • HTML DOM – standard model for HTML documents

    The HTML DOM is a standard object model and programming interface for HTML. It defines:

    • The HTML elements as objects
    • The properties of all HTML elements
    • The methods to access all HTML elements
    • The events for all HTML elements

    In other words: The HTML DOM is a standard for how to get, change, add, or delete HTML elements.

    Viewed as a hierarchical tree – image is in the w3schools link attached above

    Twitter
    @SchaffenCreate
    @tommnorman
    Website:
    https://www.schaffencreative.com

     

    The post Eps 36: Document Object Model (DOM) appeared first on Schaffen Creative.

    9 May 2018, 12:52 am
  • 7 minutes 40 seconds
    Eps 35: Fixed Position Footer

    What is a fixed position footer?

    • The concept of taking a footer that more than likely doesn’t sit at the bottom of a screen comfortably and forcing it to stay put at the bottom of the screen.
    • This is ideal if you have information there that you would like people to have a constant view on. Ie, social links, navigation links, contact information

    <footer id=”footer”>
    Content goes here.
    </footer>

    #footer {
      position:fixed;
      left:0px;
      bottom:0px;
      Height:30px; <!–Is it needed? Play around with it –>
      width:100%;
    }

    Flexbox – via CSS Tricks by Chris Coyier

    Twitter
    @SchaffenCreate
    @tommnorman

    Website: https://www.schaffencreative.com

     

    The post Eps 35: Fixed Position Footer appeared first on Schaffen Creative.

    25 April 2018, 10:39 pm
  • 11 minutes 12 seconds
    Eps 34: Website SEO in 2018

    Website SEO Write your code correctly H1, h2, h3, p, table, use alt tag on images – 2 for 1 also impacts adaptability standards (screen readers and assistance devices Mobile first Biggest push and newest standards are trending towards (or in most cases already implemented) creating a mobile friendly and responsive website Tougher to do […]

    The post Eps 34: Website SEO in 2018 appeared first on Schaffen Creative.

    10 April 2018, 10:40 pm
  • More Episodes? Get the App
© MoonFM 2024. All rights reserved.