Back to Blog
Scott Weaver
Author

Scott Weaver

Scott Weaver is a senior full-stack engineer with 20+ years of experience building scalable web products. He specializes in WordPress architecture, React, and modern JavaScript, and focuses on turning complex ideas into practical, well-documented solutions. SeeScottDev is where he shares hard-won lessons from real production systems, not tutorials written in a vacuum.

23 posts

HTML Links and Anchor Tags: href, target, and Jumping to a Section
HTML Beginners Course

HTML Links and Anchor Tags: href, target, and Jumping to a Section

Every clickable link in HTML, whether it points to another website, another page on your own site, or a specific spot further down the same page, star...

Scott Weaver
Read
Links
HTML Beginners Course

Links

If you want to learn how to create links to external sites, links to internal pages or even create a navigation section, this video is for you!

Scott Weaver
Read
HTML Images: The img Tag, Alt Text, and File Paths Explained
HTML Beginners Course

HTML Images: The img Tag, Alt Text, and File Paths Explained

Images go in with a single tag, <img>, and the only thing that changes based on where the image actually lives is one attribute: src. Point src at a f...

Scott Weaver
Read
HTML Ordered and Unordered Lists: ul, ol, and li Explained
HTML Beginners Course

HTML Ordered and Unordered Lists: ul, ol, and li Explained

HTML gives you two kinds of lists, and the choice between them comes down to one question: does the order matter? A grocery list doesn't care what ord...

Scott Weaver
Read
How to Take Full Page Screenshots in Google Chrome (No Extension)
Quick Tips

How to Take Full Page Screenshots in Google Chrome (No Extension)

Chrome can capture a full-page screenshot, no extension required. Open DevTools, hit Cmd+Shift+P (Ctrl+Shift+P on Windows), type "screenshot," and pic...

Scott Weaver
Read
HTML Text Tags: Paragraphs, Line Breaks, Bold, and Italic
HTML Beginners Course

HTML Text Tags: Paragraphs, Line Breaks, Bold, and Italic

A word processor formats text with a toolbar. HTML formats text with tags: <p> for a paragraph, <br> for a single line break, and a handful of tags fo...

Scott Weaver
Read
HTML Headings: How to Use h1 Through h6
HTML Beginners Course

HTML Headings: How to Use h1 Through h6

HTML gives you six heading tags, <h1> through <h6>. <h1> is the top-level title of the page and <h6> is the lowest sub-level. They do two jobs at once...

Scott Weaver
Read
How to Fix a Git Commit Message (Amend, Rebase, and Force-Push Safely)
Quick Tips

How to Fix a Git Commit Message (Amend, Rebase, and Force-Push Safely)

TL;DR: Most recent commit: git commit --amend. An older one: git rebase -i HEAD~N, change pick to reword on that commit. Already pushed: git push --fo...

Scott Weaver
Read
HTML Paragraphs and Spacing
HTML Beginners Course

HTML Paragraphs and Spacing

In this video, we talk about paragraph tags — <p>, break tags — <br> and non-breaking space entities — &nbsp;. We’re just diving into actual elements...

Scott Weaver
Read
HTML Beginners Course

HTML Head Tags: title, meta charset, and viewport Explained

<head> is where a page keeps the parts that never show up on screen but still shape how the page works: the tab title, the character set, how the page...

Scott Weaver
Read