#Html table Colspan
Explore tagged Tumblr posts
saide-hossain · 10 months ago
Text
Let's understand HTML
Tumblr media
Cover these topics to complete your HTML journey.
HTML (HyperText Markup Language) is the standard language used to create web pages. Here's a comprehensive list of key topics in HTML:
1. Basics of HTML
Introduction to HTML
HTML Document Structure
HTML Tags and Elements
HTML Attributes
HTML Comments
HTML Doctype
2. HTML Text Formatting
Headings (<h1> to <h6>)
Paragraphs (<p>)
Line Breaks (<br>)
Horizontal Lines (<hr>)
Bold Text (<b>, <strong>)
Italic Text (<i>, <em>)
Underlined Text (<u>)
Superscript (<sup>) and Subscript (<sub>)
3. HTML Links
Hyperlinks (<a>)
Target Attribute
Creating Email Links
4. HTML Lists
Ordered Lists (<ol>)
Unordered Lists (<ul>)
Description Lists (<dl>)
Nesting Lists
5. HTML Tables
Table (<table>)
Table Rows (<tr>)
Table Data (<td>)
Table Headings (<th>)
Table Caption (<caption>)
Merging Cells (rowspan, colspan)
Table Borders and Styling
6. HTML Forms
Form (<form>)
Input Types (<input>)
Text Fields (<input type="text">)
Password Fields (<input type="password">)
Radio Buttons (<input type="radio">)
Checkboxes (<input type="checkbox">)
Drop-down Lists (<select>)
Textarea (<textarea>)
Buttons (<button>, <input type="submit">)
Labels (<label>)
Form Action and Method Attributes
7. HTML Media
Images (<img>)
Image Maps
Audio (<audio>)
Video (<video>)
Embedding Media (<embed>)
Object Element (<object>)
Iframes (<iframe>)
8. HTML Semantic Elements
Header (<header>)
Footer (<footer>)
Article (<article>)
Section (<section>)
Aside (<aside>)
Nav (<nav>)
Main (<main>)
Figure (<figure>), Figcaption (<figcaption>)
9. HTML5 New Elements
Canvas (<canvas>)
SVG (<svg>)
Data Attributes
Output Element (<output>)
Progress (<progress>)
Meter (<meter>)
Details (<details>)
Summary (<summary>)
10. HTML Graphics
Scalable Vector Graphics (SVG)
Canvas
Inline SVG
Path Element
11. HTML APIs
Geolocation API
Drag and Drop API
Web Storage API (localStorage and sessionStorage)
Web Workers
History API
12. HTML Entities
Character Entities
Symbol Entities
13. HTML Meta Information
Meta Tags (<meta>)
Setting Character Set (<meta charset="UTF-8">)
Responsive Web Design Meta Tag
SEO-related Meta Tags
14. HTML Best Practices
Accessibility (ARIA roles and attributes)
Semantic HTML
SEO (Search Engine Optimization) Basics
Mobile-Friendly HTML
15. HTML Integration with CSS and JavaScript
Linking CSS (<link>, <style>)
Adding JavaScript (<script>)
Inline CSS and JavaScript
External CSS and JavaScript Files
16. Advanced HTML Concepts
HTML Templates (<template>)
Custom Data Attributes (data-*)
HTML Imports (Deprecated in favor of JavaScript modules)
Web Components
These topics cover the breadth of HTML and will give you a strong foundation for web development.
Full course link for free: https://shorturl.at/igVyr
2 notes · View notes
kevirite · 2 months ago
Text
HTML માં ટેબલ કેવી રીતે બનાવવું?
Tumblr media
https://youtu.be/Yrut0-802ZM 🖥️ HTML માં ટેબલ કેવી રીતે બનાવવું? જો તમે વેબપેજ પર ડેટા સ્વરૂપે ટેબલ બતાવવા માંગતા હો, તો HTML ટેબલ ખૂબ જ અસરકારક અને સરળ રીત છે. 📊 આજે આપણે જાણીશું HTML માં ટેબલ કેવી રીતે બનાવવું અને તેને કસ્ટમાઇઝ કેવી રીતે કરવું. 🚀 🟢 HTML ટેબલની બેઝિક સ્ટ્રક્ચર HTML Table Example
Simple HTML Table
Student Name Subject Marks Rahul Maths 85 Aisha Science 90 Krishna English 88 ✅ આ શું કરશે? - : ટેબલ બનાવે છે. - : ટેબલ રો (Row) બનાવે છે. - : ટેબલ હેડિંગ માટે. - : ટેબલ ડેટા સેલ માટે. 🎨 ટેબલને સ્ટાઇલિશ બનાવવી (CSS સાથે) ✅ આ શું કરશે? - ટેબલને સુંદર લુક આપશે. - Hover Effect અને Even Row Coloring ઉમેરશે. 🔥 ટેબલમાં colspan અને rowspan ઉમેરવું colspan: Combined Cell rowspan: Merged Row ✅ આ શું કરશે? - colspan: બે કે વધુ કોલમ્સને મર્જ કરવું. - rowspan: બે કે વધુ રોઝને મર્જ કરવું. ❗️ ટ્રબલશૂટિંગ ટિપ્સ: - Border Missing? border="1" નો ઉપયોગ કરો. - Spacing Issues? cellpadding અને cellspacing સેટ કરો. - Responsive Table? width: 100% CSS ઉમેરો. 🎥 ટેક્નોલોજી શીખવી હવે થઈ ગઇ વધુ સરળ! જો તમને આ માહિતી ઉપયોગી લાગી હોય, તો અમારા YouTube ચેનલને સબ્સ્ક્રાઇબ કરો અને વધુ HTML ટિપ્સ અને ટ્રિક્સ શીખતા રહો! 🔔😊 👉🏼 સબ્સ્ક્રાઇબ કરો અને વેબ ડેવલપમેન્ટમાં માસ્ટર બનો! આભાર! 🙌🏼 Read the full article
0 notes
html-tute · 10 months ago
Text
HTML Tables
Tumblr media
HTML tables are used to display data in a structured format, using rows and columns. Tables are a great way to organize information, such as data, schedules, or any other content that requires a tabular layout.
Basic Structure of an HTML Table
An HTML table is created using the <table> element, and it consists of rows (<tr>), headers (<th>), and data cells (<td>).<table> <tr> <th>Header 1</th> <th>Header 2</th> <th>Header 3</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> <td>Data 3</td> </tr> <tr> <td>Data 4</td> <td>Data 5</td> <td>Data 6</td> </tr> </table>
Key Table Elements
<table>: The container element for the table.
<tr>: Defines a row within the table.
<th>: Defines a header cell in the table. Text in a <th> is bold and centered by default.
<td>: Defines a standard data cell in the table.
Example of a Simple HTML Table
<!DOCTYPE html> <html> <head> <title>HTML Table Example</title> </head> <body> <h1>Sample HTML Table</h1> <table border="1"> <tr> <th>Name</th> <th>Age</th> <th>Occupation</th> </tr> <tr> <td>John Doe</td> <td>30</td> <td>Software Engineer</td> </tr> <tr> <td>Jane Smith</td> <td>25</td> <td>Graphic Designer</td> </tr> <tr> <td>Emily Johnson</td> <td>40</td> <td>Project Manager</td> </tr> </table></body> </html>
Adding Table Borders
The border attribute adds borders around table cells. Although it's now better to use CSS for styling, you can still use the border attribute in the <table> tag for quick border application.<table border="1"> <!-- table content --> </table>
Table Caption
A table caption is a brief description of the table and is added using the <caption> tag. It usually appears above the table.<table border="1"> <caption>Employee Information</caption> <tr> <th>Name</th> <th>Age</th> <th>Occupation</th> </tr> <!-- more rows --> </table>
Table Headers
Headers are often used to define the labels for columns or rows. They help in identifying the type of data contained in the corresponding rows or columns.<table border="1"> <tr> <th>Name</th> <th>Age</th> <th>Occupation</th> </tr> </table>
Table Spanning
Colspan: Allows a cell to span multiple columns.
Rowspan: Allows a cell to span multiple rows.
<table border="1"> <tr> <th colspan="2">Header spanning two columns</th> <th>Header 3</th> </tr> <tr> <td rowspan="2">Cell spanning two rows</td> <td>Data 2</td> <td>Data 3</td> </tr> <tr> <td>Data 4</td> <td>Data 5</td> </tr> </table>
Grouping Table Elements
<thead>: Groups the header content.
<tbody>: Groups the body content.
<tfoot>: Groups the footer content.
This grouping helps with styling and managing large tables more efficiently.<table border="1"> <thead> <tr> <th>Name</th> <th>Age</th> <th>Occupation</th> </tr> </thead> <tbody> <tr> <td>John Doe</td> <td>30</td> <td>Software Engineer</td> </tr> <tr> <td>Jane Smith</td> <td>25</td> <td>Graphic Designer</td> </tr> </tbody> <tfoot> <tr> <td colspan="3">Footer Content</td> </tr> </tfoot> </table>
Styling Tables with CSS
CSS provides powerful ways to style tables beyond the basic border attribute. You can customize padding, background colors, border styles, and more.<style> table { width: 100%; border-collapse: collapse; } th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; } tr:hover { background-color: #f5f5f5; } th { background-color: #f2f2f2; } </style><table> <!-- table content --> </table>
Key Points
Tables are structured using rows (<tr>), headers (<th>), and cells (<td>).
Use attributes like colspan and rowspan to merge cells.
Group elements using <thead>, <tbody>, and <tfoot> for better structure and styling.
CSS can greatly enhance the appearance of your tables, making them more user-friendly and visually appealing.
Understanding how to create and style tables in HTML is essential for organizing and displaying data on your web pages.
Read More…
0 notes
introductionofjava · 1 year ago
Text
Mastering Colspan and Rowspan in HTML Tables
This topic explores the use of the colspan and rowspan attributes in HTML tables, which allow you to merge cells across columns and rows, respectively. These attributes are essential for creating complex table structures and ensuring that data is presented clearly and logically. The topic covers the syntax for applying colspan and rowspan to <th> and <td> elements, along with practical examples that demonstrate how to span cells across multiple columns and rows. By mastering colspan and rowspan, you can create more versatile and visually appealing tables, effectively displaying tabular data in your web pages.
0 notes
ar3school · 2 years ago
Text
HTML Table Generator Create In HTML CSS Portal Editor Online
This is a simple online blogger script free ar3school tool to enable you to create tables with different styles with HTML, CSS with color, center, colspan, padding, responsive, number of rows, columns, borders, etc
0 notes
jameswsparker · 2 years ago
Link
0 notes
rajantechshow · 4 years ago
Link
Friends in this video I am going to show you what is Table Tag in HTML and how we can use the different attributes of HTML Table Tags like Width, Height, Cellpadding, Cellspacing, Colspan, Rowspan,Align and more .
0 notes
krbittusingh · 5 years ago
Video
HTML in Hindi | Lesson 8 | table tag in html | table heading in html |
1 note · View note
hypewebsites · 4 years ago
Text
5 Website Design Methodologies That May Be Harming A Website and Its SEO Valuation
Designing a website is both art and lore. It requires cultural go, visualization from doper's perspective, and great specialized expertise to convert the fantasied design into palpable creativity. The worst thing any company can do is to copy another company's website and apply it as his/ her own. This sequence, if repeated by other companies, leads to a group of poorly designed websites. It does not do the essential needful of druggie experience. Resemblant websites qualify a low rank in SEO valuations, influencing in poor trade and low spot ranking in quest motor ranking. 
There are web design systems that should be avoided or chosen with objective analysis, as they might be either harming website design, or easing SEO valuation. Some are mooted below     1. Using Tables in Website Layout   Using tables in a web go-between layout makes the go-between complicated, as outside layout tables use a lot of table attributes corresponding as colspan, rowspan and nested tables. Although designing tables may be easy, the keep is tough. Outside screen compendiums find it sensitive to understand tables as they're supposed to read it in the sequence displayed in HTML, and the content within a table layout becomes puzzling when read from left to right and top to bottom. This is else complicated when the table is nested. HTML5 counselors-at-law avoiding tables in go-between layout and HTML4.01 disallows it. Donative is kept separate from HTML, when CSS is used, so keep of tables in CSS is a bit easier. Tables might obstruct the pliability of the go-between affect SEO. Nested tables take a lot else time to load than CSS for the same design.     2. Immeasurable Scrolling  Although scrolling is a really popular design and much used across paramount websites ( especiallye-commerce), it isn't for every website. Using this recipe depends on the marks of thewebsite.However, it can be useful, If the mark of the website is to stream content continuously and the content structure is flat. Notwithstanding, if the mark of the website is to backstop fiends to digout a specific task or compare choices, it can hurt doper experience.     In specific task accomplishment, fiends find grouped content more fascinating. The doper might feel overpowered by the plenty of information presented by scrolling a nowise ending go-between ( leading to low conversion). Hence, immensurable scrolling is a bad recipe for websites fastened on task accomplishment exercise. This requires them to back- track their quest or find a specific content. 
3. Parallax Scrolling    Although parallax scrolling is universally used and is a good function that leads to a good frequenter, there are issues associated with it too. Parallax scrolling may lead to low valuation for SEOranking.However, images, and good visual display it's OK, If the parallax website is one go-between of content. Notwithstanding, if the website hasinfographic.i.e. image having primer, Google doesn't read it! This can lead to low SEO ranking. It can be sorted by converting the image content to genuine primer. The problem associated with footers should be taken into account as some fiends might be looking at the information available at the bottom of the go-between. Parallax web go-betweens with images may take longer than usual to load, thereby making most fiends leave the website before the go-between actually loads. 
4. Lazy Loading    Lazy draft doesn't allow content or images to load until dopers interact with that part of the express. This content either can not be entered by spiders and won't be competent to load the rest of the express ( only the visible content gets entered). This can lead to low valuations for SEO and hurt the express commerce. The development and SEO brigade should estimate the intended design to figure out complicated basics that will be knotty to apply. 
5. Lack of Mobile Configured Design   With high infiltration of mobile, it's essential for a company to have its website mobile friendly, with a responsive and adaptive design. This has a direct bearing on commerce. With Google's preamble of mobile algorithm, websites who aren't mobile friendly are pushed down into the hunt menu. A responsive design allows freight of the website on all device types. Device finding is possible through adaptive design, which allows progressive advancement as per dopehead must-haves. Notwithstanding, configuration to all available device types may be a challenge. Responsive/ adaptive manner of design uses the responsive differentia for all content and special coding for images making feathery expresses for mobile, and this improves freight time. 
For More Info:
local SEO packages northern Ireland
SEO services agency northern Ireland
Professional SEO expert in Ireland
1 note · View note
introductionofjava · 1 year ago
Text
Creating Table Headers in HTML
This topic focuses on the use of table headers in HTML, which are crucial for defining and organizing the headings of table columns and rows. The <th> tag is used to create table headers, providing context and improving the accessibility of tabular data. This topic covers the syntax and proper usage of the <th> tag, along with attributes like scope and colspan to specify the header's relationship to the rest of the table. Practical examples demonstrate how to create effective table headers, style them using CSS, and ensure they enhance the readability and usability of your HTML tables.
0 notes
geowater · 5 years ago
Text
html
<html>    <head>        <meta name="text:Google Analytics Code" content=""/>        <meta name="text:Web Counter" countent=""/>        <title>{Title}</title>        <link rel="shortcut icon" href="{Favicon}">        <link rel="alternate" type="application/rss+xml" href="{RSS}">        {block:Description}            <meta name="description" content="{MetaDescription}" />        {/block:Description}    </head>    <body bgcolor="#000000" text="#FFFFFF" background="https://static.tumblr.com/dsqa4u4/MO0qijyvi/water01.jpg">        <center><h1><a href="/" color="#FFFFFF" style='text-decoration:none; color: #ffffff'>{Title}</a></h1>
       <img src="{PortraitURL-128}">        {block:Description}            <center><div style="max-width:500px">            <marquee>{Description}</marquee>            </div></center>        {/block:Description}
       {block:AskEnabled}            <a href="/ask"><img src="https://static.tumblr.com/dsqa4u4/wKCqijzx2/ask.png"> {AskLabel}</a>        {/block:AskEnabled}
{block:SubmissionsEnabled}            <a href="/submit"><img src="https://static.tumblr.com/dsqa4u4/KDIqijzx5/sub.png"> {SubmissionsLabel}</a>        {/block:SubmissionsEnabled}        </center>
           {block:Posts}            <table border=1 width=100%>            <tr>                <td width="200">{block:Date}<a href="{Permalink}">{ShortMonth} {DayOfMonth}, {ShortYear}</a>.{/block:Date}<br>                {NoteCount} Notes.
                   {block:Reblog}                    <p>                    <script>                        if ({NoteCount} > 1000) {                            document.write('HOT POST<br><img src="https://static.tumblr.com/dsqa4u4/QuFqijzll/ffish.gif">');                        }                    </script>                    {/block:Reblog}            </td>                <td>
               {block:Text}
                       {block:Title}                            <h3><a href="{Permalink}">{Title}</a></h3>                        {/block:Title}
                       {Body}
               {/block:Text}
               {block:Photo}                        <center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}">{LinkCloseTag}</center>
                       {block:Caption}                            <div class="caption">{Caption}</div>                        {/block:Caption}
               {/block:Photo}
               {block:Panorama}
                       {LinkOpenTag}                            <img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>                        {LinkCloseTag}
                       {block:Caption}                            <div class="caption">{Caption}</div>                        {/block:Caption}
               {/block:Panorama}
               {block:Photoset}
                       <center>{Photoset-500}</center>
                       {block:Caption}                            <div class="caption">{Caption}</div>                        {/block:Caption}
               {/block:Photoset}
               {block:Quote}
                       <blockquote>{Quote}</blockquote>
                       {block:Source}                            <div class="source">{Source}</div>                        {/block:Source}
               {/block:Quote}
               {block:Link}
                       <a href="{URL}" class="link" {Target}>{Name}</a>
                       {block:Description}                            <div class="description">{Description}</div>                        {/block:Description}
               {/block:Link}
               {block:Chat}
                       {block:Title}                            <h3><a href="{Permalink}">{Title}</a></h3>                        {/block:Title}
                       <ul class="chat">                            {block:Lines}                                <li class="{Alt} user_{UserNumber}">                                    {block:Label}                                        <span class="label">{Label}</span>                                    {/block:Label}
                                   {Line}                                </li>                            {/block:Lines}                        </ul>
               {/block:Chat}
               {block:Video}
                       {Video-500}
                       {block:Caption}                            <div class="caption">{Caption}</div>                        {/block:Caption}
               {/block:Video}
               {block:Audio}
                       {AudioPlayerBlack}
                       {block:Caption}                            <div class="caption">{Caption}</div>                        {/block:Caption}
               {/block:Audio}            </td></tr>            <tr><td colspan=2 align="right">                {block:HasTags}                    {block:Tags}                        <blink><a href="{TagURL}">{Tag}</a>                    {/block:Tags}                {/block:HasTags}            </td></tr>            {block:PermalinkPage}            <tr><td colspan=2 align="center">                {block:PostNotes}                    {PostNotes-16}                {/block:PostNotes}            </td></tr>            {/block:PermalinkPage}            </table>            <br><br>            {/block:Posts}
       <p id="footer">            <center>            {block:PreviousPage}                <h2><a href="{PreviousPage}">« Previous Page</a></h2>            {/block:PreviousPage}
           {block:NextPage}                <h2><a href="{NextPage}">Next Page »</a></h2>            {/block:NextPage}            <br><br>            <h3><a href="/archive">Archive</a></h3>            <a href="/"><img src="https://static.tumblr.com/dsqa4u4/eFaqijzxc/home1.png"></a>            </center>        </p> <head> <style> a:link {  color: White;  background-color: transparent;  text-decoration: none; } a:visited {  color: white;  background-color: transparent;  text-decoration: none; } a:hover {  color: white;  background-color: transparent;  text-decoration: underline; } a:active {  color: white;  background-color: transparent;  text-decoration: underline; } </style> </head> {block:IfWebCounter} <!-- hitwebcounter Code START --> <a href="https://www.hitwebcounter.com/" target="_blank"> <img src="https://hitwebcounter.com/counter/counter.php?page={text:Web Counter}&style=0027&nbdigits=5&type=page&initCount=0" title="" Alt=""   border="0" > </a> {/block:IfWebCounter}
{block:IfGoogleAnalyticsCode} <script type="text/javascript">  var _gaq = _gaq || [];  _gaq.push(['_setAccount', '{text:Google Analytics Code}']);  _gaq.push(['_trackPageview']);
 (function() {    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js';    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);  })(); </script> {/block:IfGoogleAnalyticsCode}    </body> </html>
1 note · View note
hydralisk98 · 5 years ago
Photo
Tumblr media
hydralisk98′s web projects tracker:
Core principles=
Fail faster
‘Learn, Tweak, Make’ loop
This is meant to be a quick reference for tracking progress made over my various projects, organized by their “ultimate target” goal:
(START)
(Website)=
Install Firefox
Install Chrome
Install Microsoft newest browser
Install Lynx
Learn about contemporary web browsers
Install a very basic text editor
Install Notepad++
Install Nano
Install Powershell
Install Bash
Install Git
Learn HTML
Elements and attributes
Commenting (single line comment, multi-line comment)
Head (title, meta, charset, language, link, style, description, keywords, author, viewport, script, base, url-encode, )
Hyperlinks (local, external, link titles, relative filepaths, absolute filepaths)
Headings (h1-h6, horizontal rules)
Paragraphs (pre, line breaks)
Text formatting (bold, italic, deleted, inserted, subscript, superscript, marked)
Quotations (quote, blockquote, abbreviations, address, cite, bidirectional override)
Entities & symbols (&entity_name, &entity_number, &nbsp, useful HTML character entities, diacritical marks, mathematical symbols, greek letters, currency symbols, )
Id (bookmarks)
Classes (select elements, multiple classes, different tags can share same class, )
Blocks & Inlines (div, span)
Computercode (kbd, samp, code, var)
Lists (ordered, unordered, description lists, control list counting, nesting)
Tables (colspan, rowspan, caption, colgroup, thead, tbody, tfoot, th)
Images (src, alt, width, height, animated, link, map, area, usenmap, , picture, picture for format support)
old fashioned audio
old fashioned video
Iframes (URL src, name, target)
Forms (input types, action, method, GET, POST, name, fieldset, accept-charset, autocomplete, enctype, novalidate, target, form elements, input attributes)
URL encode (scheme, prefix, domain, port, path, filename, ascii-encodings)
Learn about oldest web browsers onwards
Learn early HTML versions (doctypes & permitted elements for each version)
Make a 90s-like web page compatible with as much early web formats as possible, earliest web browsers’ compatibility is best here
Learn how to teach HTML5 features to most if not all older browsers
Install Adobe XD
Register a account at Figma
Learn Adobe XD basics
Learn Figma basics
Install Microsoft’s VS Code
Install my Microsoft’s VS Code favorite extensions
Learn HTML5
Semantic elements
Layouts
Graphics (SVG, canvas)
Track
Audio
Video
Embed
APIs (geolocation, drag and drop, local storage, application cache, web workers, server-sent events, )
HTMLShiv for teaching older browsers HTML5
HTML5 style guide and coding conventions (doctype, clean tidy well-formed code, lower case element names, close all html elements, close empty html elements, quote attribute values, image attributes, space and equal signs, avoid long code lines, blank lines, indentation, keep html, keep head, keep body, meta data, viewport, comments, stylesheets, loading JS into html, accessing HTML elements with JS, use lowercase file names, file extensions, index/default)
Learn CSS
Selections
Colors
Fonts
Positioning
Box model
Grid
Flexbox
Custom properties
Transitions
Animate
Make a simple modern static site
Learn responsive design
Viewport
Media queries
Fluid widths
rem units over px
Mobile first
Learn SASS
Variables
Nesting
Conditionals
Functions
Learn about CSS frameworks
Learn Bootstrap
Learn Tailwind CSS
Learn JS
Fundamentals
Document Object Model / DOM
JavaScript Object Notation / JSON
Fetch API
Modern JS (ES6+)
Learn Git
Learn Browser Dev Tools
Learn your VS Code extensions
Learn Emmet
Learn NPM
Learn Yarn
Learn Axios
Learn Webpack
Learn Parcel
Learn basic deployment
Domain registration (Namecheap)
Managed hosting (InMotion, Hostgator, Bluehost)
Static hosting (Nertlify, Github Pages)
SSL certificate
FTP
SFTP
SSH
CLI
Make a fancy front end website about 
Make a few Tumblr themes
===You are now a basic front end developer!
Learn about XML dialects
Learn XML
Learn about JS frameworks
Learn jQuery
Learn React
Contex API with Hooks
NEXT
Learn Vue.js
Vuex
NUXT
Learn Svelte
NUXT (Vue)
Learn Gatsby
Learn Gridsome
Learn Typescript
Make a epic front end website about 
===You are now a front-end wizard!
Learn Node.js
Express
Nest.js
Koa
Learn Python
Django
Flask
Learn GoLang
Revel
Learn PHP
Laravel
Slim
Symfony
Learn Ruby
Ruby on Rails
Sinatra
Learn SQL
PostgreSQL
MySQL
Learn ORM
Learn ODM
Learn NoSQL
MongoDB
RethinkDB
CouchDB
Learn a cloud database
Firebase, Azure Cloud DB, AWS
Learn a lightweight & cache variant
Redis
SQLlite
NeDB
Learn GraphQL
Learn about CMSes
Learn Wordpress
Learn Drupal
Learn Keystone
Learn Enduro
Learn Contentful
Learn Sanity
Learn Jekyll
Learn about DevOps
Learn NGINX
Learn Apache
Learn Linode
Learn Heroku
Learn Azure
Learn Docker
Learn testing
Learn load balancing
===You are now a good full stack developer
Learn about mobile development
Learn Dart
Learn Flutter
Learn React Native
Learn Nativescript
Learn Ionic
Learn progressive web apps
Learn Electron
Learn JAMstack
Learn serverless architecture
Learn API-first design
Learn data science
Learn machine learning
Learn deep learning
Learn speech recognition
Learn web assembly
===You are now a epic full stack developer
Make a web browser
Make a web server
===You are now a legendary full stack developer
[...]
(Computer system)=
Learn to execute and test your code in a command line interface
Learn to use breakpoints and debuggers
Learn Bash
Learn fish
Learn Zsh
Learn Vim
Learn nano
Learn Notepad++
Learn VS Code
Learn Brackets
Learn Atom
Learn Geany
Learn Neovim
Learn Python
Learn Java?
Learn R
Learn Swift?
Learn Go-lang?
Learn Common Lisp
Learn Clojure (& ClojureScript)
Learn Scheme
Learn C++
Learn C
Learn B
Learn Mesa
Learn Brainfuck
Learn Assembly
Learn Machine Code
Learn how to manage I/O
Make a keypad
Make a keyboard
Make a mouse
Make a light pen
Make a small LCD display
Make a small LED display
Make a teleprinter terminal
Make a medium raster CRT display
Make a small vector CRT display
Make larger LED displays
Make a few CRT displays
Learn how to manage computer memory
Make datasettes
Make a datasette deck
Make floppy disks
Make a floppy drive
Learn how to control data
Learn binary base
Learn hexadecimal base
Learn octal base
Learn registers
Learn timing information
Learn assembly common mnemonics
Learn arithmetic operations
Learn logic operations (AND, OR, XOR, NOT, NAND, NOR, NXOR, IMPLY)
Learn masking
Learn assembly language basics
Learn stack construct’s operations
Learn calling conventions
Learn to use Application Binary Interface or ABI
Learn to make your own ABIs
Learn to use memory maps
Learn to make memory maps
Make a clock
Make a front panel
Make a calculator
Learn about existing instruction sets (Intel, ARM, RISC-V, PIC, AVR, SPARC, MIPS, Intersil 6120, Z80...)
Design a instruction set
Compose a assembler
Compose a disassembler
Compose a emulator
Write a B-derivative programming language (somewhat similar to C)
Write a IPL-derivative programming language (somewhat similar to Lisp and Scheme)
Write a general markup language (like GML, SGML, HTML, XML...)
Write a Turing tarpit (like Brainfuck)
Write a scripting language (like Bash)
Write a database system (like VisiCalc or SQL)
Write a CLI shell (basic operating system like Unix or CP/M)
Write a single-user GUI operating system (like Xerox Star’s Pilot)
Write a multi-user GUI operating system (like Linux)
Write various software utilities for my various OSes
Write various games for my various OSes
Write various niche applications for my various OSes
Implement a awesome model in very large scale integration, like the Commodore CBM-II
Implement a epic model in integrated circuits, like the DEC PDP-15
Implement a modest model in transistor-transistor logic, similar to the DEC PDP-12
Implement a simple model in diode-transistor logic, like the original DEC PDP-8
Implement a simpler model in later vacuum tubes, like the IBM 700 series
Implement simplest model in early vacuum tubes, like the EDSAC
[...]
(Conlang)=
Choose sounds
Choose phonotactics
[...]
(Animation ‘movie’)=
[...]
(Exploration top-down ’racing game’)=
[...]
(Video dictionary)=
[...]
(Grand strategy game)=
[...]
(Telex system)=
[...]
(Pen&paper tabletop game)=
[...]
(Search engine)=
[...]
(Microlearning system)=
[...]
(Alternate planet)=
[...]
(END)
4 notes · View notes
sirousagi-universe · 5 years ago
Text
<!DOCTYPE html>
<meta><style scoped="scoped"> h2 { color: #0094ff; text-align: center; } img { box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4); width: 700px; } td { font-size: 28px; text-align: center; border: 1px solid #cccccc; } .red { color: red; } tr:nth-child(2) { font-weight: bold; font-style: italic; } td:first-child { color: red; } table { /* margin-left: 10px; */ /* margin-right: 10px; */ width: 700px; margin:auto; } </style>
2020年1月カレンダー
<table><tr><td colspan="7"> ![image](winter.jpg)</td> </tr><tr><td>日</td> <td>月</td> <td>火</td> <td>水</td> <td>木</td> <td>金</td> <td>土</td> </tr><tr><td></td> <td></td> <td></td> <td class="red">1</td> <td>2</td> <td>3</td> <td>4</td> </tr><tr><td>5</td> <td>6</td> <td>7</td> <td>8</td> <td>9</td> <td>10</td> <td>11</td> </tr><tr><td>12</td> <td class="red">13</td> <td>14</td> <td>15</td> <td>16</td> <td>17</td> <td>18</td> </tr><tr><td>19</td> <td>20</td> <td>21</td> <td>22</td> <td>23</td> <td>24</td> <td>25</td> </tr><tr><td>26</td> <td>27</td> <td>28</td> <td>29</td> <td>30</td> <td>31</td> <td></td> </tr></table>
1 note · View note
hometrainer137 · 8 years ago
Text
HTML Intro & Basics Tags Session 1 [ Home Trainer ~ Watch | Learn | Share ]
HTML Intro & Basics Tags Session 1 [ Home Trainer ~ Watch | Learn | Share ]
Home Trainer started in the early 2015 to share and provide FREE videos and online training tutorials for all the students in the field of Creative & Digital Graphics Designing, Website Design+Development, Architectural, 2D-3D Animation, Audio-Video Editing, Programming & Visual Effects Com-positing. This website is to share about online learning and to show people “How to Learn Graphic Designing…
View On WordPress
0 notes
shunya-wisteria · 6 years ago
Photo
Tumblr media
パソコン、インターネット、ホームページ、SNS、WEBサービス、その先へ
令和の時代が始まり1か月弱。さかのぼることその1月程前、Yahoo!ジオシティーズというサービスがひっそりと姿を消した。私にとって思い出深く、その後の人生に大きな影響を与えたもの、ICTの道へ進むきっかけになった存在。Yahoo!ジオシティーズから始まった私のWEB半生を振り返る。
(私にとっての)WEB黎明期
時は、地元 東海圏が「愛・地球博」に沸く2004~2005年、ピポパポ♪ピーーッガーー♪ と不思議な音をたてるノロノロのダイアルアップ接続からADSLへ自宅の環境が切り替わった頃合い。当時 中学生だった私は、Yahoo!Japan上の「ホームページ作成」というリンクを踏みジオシティーズの存在を知って以降、HTMLを駆使したホームページの作成に夢中になった。覚えたてtableタグとcolspan、rowspanを駆使して組み立てた枠組みにpngやgifのバナー画像を配置したり、マーキーで”ようこそ!”なんて文字を電光掲示板みたく流してみたり… 当時はもう一つの趣味だった自作小説を公開するサイトと、地元の鉄道・飛行機写真を公開するサイトをYahoo!ジオシティーズ、その後 忍者ツールズの2サービス上で運営していた。どちらかというとこの頃は何かを発信したい、というよりはホームページを作ること自体、HTMLをコーディングすること自体に楽しみを見出していた。とはいえ、飽きっぽい性格故に長続きすることもなく、作ったホームページは自然と廃墟と化していった(黒歴史化を避けるため、大学時代に覚えているものについては一通りcloseしていった気がする)。
当時流行り始めていたブログも、とりあえず初めてみるか程度の感覚で開設するも、特に面白みのない日記を時々投稿してみると長続きすることはなく…
積極的活用へ
大学入学の1年後、所属していた団体の広報担当(自称)としてWEBページの作成に着手。団体の顔になるWEBページなのでこれまでのようにお遊びというわけにはいかない、という心構えで。中学時代の知識を��ースにしつつ、習得できていなかったCSSを学びなおし、時間を見つけながら約1か月ほどかけて当時のスタンダードだった3カラム(メインコンテンツ・ナビゲーションバー・サイドバー)のページを作り上げた。フラットデザインの風潮に流されて途中1度 見た目を大きく変えたことはしたものの、このとき作ったサイトを以後4年弱 運用した。またこの期間中、サイトのソースコードは、私自身の実習授業の成果物や、依頼を受け設計・運用を支援した大学祭WEBページにも活用した。
コンテンツを「作る」から「配信」する時代へ
その後、4年の月日が流れる。ちょうどこの頃、1ページ1ページ ゴリゴリコーディングしてリンクを貼るコンテンツを「作る」こと、「作って終わり」からから、あらかじめ用意されたフローにのっとり継続的に「配信する」形態にWEBの主流が切り替わってきた。WordPressに代表されるCMSの台頭、Jimdo・Wixのようにノンコーディングでありながらそれまでの"誰でもできる無料HP" とは違った本格的なWEBページを作成できるツールの出現。そしてSNSとブログ、CMSのいいとこ取りを実現しているtumblr。
1ページ1ページ手作りすることに疲弊し飽き始めていた私はtumblrの魅力に取りつかれていた。twitterやfacebook、instagramのような手軽な使い方にも、まとまった文章を書くブログ用途にも使える。前述のSNSに比べて遥かにカスタマイズの自由度が高く、標準機能で不足する部分はJavaScriptで独自のロジックを埋め込むことで改善できる。WordPressのようなCMSにはカスタマイズ性で劣るものの、できること・選択肢が少ない分、仕組みがシンプルで取っつきやすい。そして現在、私はこのtumblrというプラットフォーム上に、コンテンツを配信する仕組み(テーマ、カスタマイズロジック)を「作り」、同時にその上で日々 コンテンツを「配信」している。
話を戻すと、大学院を修了する半年前、この枠を「作る」と、コンテンツを「配信する」という切り分けができるツール(tumblr)へ学生団体のWEBページも移行した。ちょうどページを作るたびにHTMLをゴリゴリ書く無茶な運用にも限界を感じ始めた頃合い(複数人で書き換えた結果、ソースコードはスパゲッティ化を極め、バージョン管理なんて考え方もツールもない世界、誰かがCSSに追記した1文が原因で崩れたデザインを修正するのも一苦労。またこれまで管理していたメンバーの卒業・修了時期が重なったいた)��作る」ことができなくとも「配信する」ことができれば、当面は持ちこたえられるはず。
「作る」から「動かす」時代へ。そしてその後は
目下 私の休日の嗜みは、これまでの「作る」から少し進んみ、WEBサービス「動かす」ことにシフトしている。ここ数年HerokuやGoogleAppsSpript等、一定の範囲内であれば無料でアプリケーションを動かせるクラウドプラットフォームが広まり、WEBサービスを「動かす」ことの敷居が随分下がってきた。するとこれまでできなかったことが比較的 簡単にできるようになってしまうわけだ。
例えばこのサイトの片隅にひっそり存在するPhotoLog。1年ほど前からGoogleドライブ上で動かすことのできるRDB FusionTableの機能を用いて実現している。そのうちFusionTableへの登録部分はGoogleAppsScriptに開発したWEBアプリを介してスマートフォンから実施している(ただFusionTableはこの夏 サービス終了となるため、早急に代替手段を探せねばいけないが)。
他にも一人暮らしする上で必要な家計管理。ここ3年間は、Ruby on Railsで開発したWEBアプリをHerokuとHeroku PostgreSQL上で運用している。今年の1月からは、1から作り直した2代目システムの運用をスタート。フロントUIにVue.jsを採用したことで、開発する立場からも、使う側の立場からも、勝手の良いものとなった。バックエンドはHeroku上のrailsアプリケーション(データの登録・編集)とGoogleAppsScript(定期jobの実行・メール配信)を活用、それぞれの使いやすい部分を使って行くスタイル。
いまはまだ、自分が使うシステム・サービスを自分で作っているだけに過ぎないが、いずれはこれらで得られたことをベースに、公開できるものを作ってみたいと思う。
ICT、WEBの技術進歩や流行り廃りは非常にはやく、その流れについていくのは容易ではない。そうした変化を"楽しみながら"受け入れていければよいな、と思う。とはいえ私自身、新しいものは好きだが、必ずしも新しいものが素晴らしく古いものが劣っているとは思わない。領域や対象、その時々の状況によって何が最適化なんて変わってくるはずだから(学生時代、私の研究は領域や対象の特質上、どちらかといえば古典的なアプローチを取らざるを得なかった。そうした中でも古典的なものと新しいものを融合させたハイブリッド��手法で進めていたものの、世間からは古典的なアプローチなんて という視線を少なからず感じることもあり…)。
12 notes · View notes
passo-html · 7 years ago
Text
MASTER DICIONÁRIO HTML
Tags estruturais
<!– –>
Cria um comentário
<html> </html>
Envolve todo um documento html
<head> </head>
Envolve o cabeçalho de um documento html
<meta>
Fornece informações gerais sobre o documento
<style> </style>
Informações de estilo
<script> </script>
Linguagem script
<noscript> </noscript>
Conteúdo alternativo para quando a linguagem script não for suportada
<title> </title>
O título do documento
<body> </body>
Envolve o corpo (texto e tags) do documento html
bgcolor – Cor de fundo #RRGGBB
background – Imagem como plano de fundo
text – Cor do texto principal
link – Cor dos links existentes na página
vlink – Cor do link já visitado
alink – Cor do link que foi ativado
marginheight – Elimina a margem esquerda apenas no Netscape
marginwidth – Elimina a margem no topo da página apenas no Netscape
topmargin – Elimina a margem no topo da página apenas no Internet Explorer
leftmargin – Elimina a margem esquerda apenas no Internet Explorer
Cabeçalhos
<hn> </hn>
Cabeçalho nível n para n de 1 a 6
Parágrafos
<p> </p>
Um simples páragrafo
align – Alinhamento do parágrafo: left, right, center e justify
Links
<a> </a>
Cria um link e inclui atributos em comum
href – O URL do documento que será vinculado a este. Para e-mail: mailto e link externo: http
name – O nome da âncora
target – Identifica a janela ou local em que o link deverá ser aberto: blank, self, top, parent
rel – Define os tipos de link que avançam
rev – Define os tipos de link que revertem a ação
acesskey – Atribui uma tecla de atalho para este elemento
shape – Para uso com formas de objeto
coords – Para uso com formas de objeto
tabindex – Determina a ordem das guias
onclick – É um evento JavaScript
onmouseover – É um evento JavaScript
onmouseout – É um evento JavaScript
Listas
<ol> </ol>
Uma lista ordenada
start – Define a partir de qual número a listagem começa
type – Tipos de caracteres ordenados: A, a, I, i, 1
<ul> </ul>
Uma lista não ordenada
type – Tipos de caracteres não ordenados: disk, square, circle
<li> </li>
Um item da lista
value – Numeração individual do item da lista
type – Tipos de caracteres ordenados: A, a, I, i e 1 para listagem ordenada e disk, square e circle para não ordenada
<menu> </menu>
Um menu com uma lista de itens
<dir> </dir>
Uma listagem de diretórios
<dl> </dl>
Uma lista de definições ou glossário
<dt> </dt>
Marca o texto especificado como um termo de definição de um glossário
<dd> </dd>
Especifica o texto referente a um termo criado pela tag <dt> dentro de uma lista de definição
Formatação de caracteres
<em> </em>
Maior ênfase em itálico
<strong> </strong>
Maior ênfase em negrito
<code> </code>
Amostra de código
<kbd> </kbd>
Texto a ser digitado
<var> </var>
Uma variável ou espaço reservado para um outro valor
<samp> </samp>
Texto de amostra
<dfn> </dfn>
Aplica um formatação no texto definido como termo de um glossário
<cite> </cite>
Uma citação
<b> </b>
Texto em negrito
<i> </i>
Texto em itálico
<u> </u>
Texto sublinhado
<tt> </tt>
Fonte monoespaçada (texto semelhante à maquina de escrever)
<pre> </pre>
Texto pré-formatado
<strike> </strike>
Texto riscado
<s> </s>
Texto tachado
<sub> </sub>
Texto subscrito
<sup> </sup>
Texto sobrescrito
<big> </big>
Texto em fonte maior do que o padrão
<small> </small>
Texto em fonte menor do que o padrão
<blink> </blink>
Texto piscando somente no Nestcape
<marquee> </marquee>
Texto animado no Internet Explorer
Outros elementos
<hr>
Uma régua horizontal
size – Espessura da linha em pixels
width – Largura da linha em pixels ou porcentagem
align – Alinhamento da linha em center, left, right
color – Cor da linha em #RRGGBB
noshade – Linha sólida
<br>
Uma quebra de linha
<center> </center>
Centralizar
<div> </div>
Conteúdo
align – Alinhamento: left, center e right
<blockquote> </blockquote>
Texto com mais margem
<address> </address>
Assinaturas ou informações gerais sobre o autor de um documento
<font> </font>
Alterna tamanho , cor e tipo de fonte exibida
size – O tamanho da fonte varia de 1 a 7
color – A cor da fonte #RRGGBB
face – O tipo da fonte
<basefonte>
Define o tamanho padrão para a fonte na página atual
size – O tamanho da fonte varia de 1 a 7
Imagens
<img>
Insere uma imagem in-line no documento e inclui atributos comuns
usemap – Um mapa de imagens do lado cliente
src – O URL da imagem
alt – Uma string de texto que será exibida em navegadores que não possam suportar imagens
align – Determina o alinhamento de uma determinada imagem: top, middle, bottom, left e right
height – É a altura sugerida em pixels
width – É a extensão sugerida em pixels
vspace – O espaço entre a imagem e o texto acima e abaixo dela
hspace – O espaço entre a imagem e o texto à esquerda e à direita dela
border – Largura da borda
Tabelas
<table> </table>
Cria uma tabela
background – Imagem de plano de fundo
bgcolor – Cor de plano de fundo
border – Largura da borda em pixels
cols – Número de colunas
cellpadding – Espaçamento nas células
cellspacing – Espaçamento entre as células
width – Largura da tabela
align – Alinhamento da tabela: left, center, right
bordercolor – Cor na borda da tabela
<caption> </caption>
A legenda para a tabela
<tr> </tr>
Uma linha na tabela
align – O alinhamento horizontal do conteúdo das células dentro dessa linha com os valores possíveis left, right, center, justify e char
bgcolor – Cor de fundo
valign – o alinhamento vertical do conteúdo das células dentro dessa linha com os valores possíveis top, middle, bottom e baseline
background – Figura como plano de fundo
<th> </th>
Um cabeçalho de célula da tabela
align – Alinhamento horizontal
valign – Alinhamento vertical
bgcolor – Cor de plano de fundo
rowspan – O número de linhas pelo qual essa célula se expandirá
colspan – O número de colunas pelo qual essa célula se expandirá
nowrap – Desliga o enquadramento de texto em uma célula
<td> </td>
Define uma célula de dados da tabela
align – Alinhamento horizontal
valign – Alinhamento vertical
bgcolor – Cor de plano de fundo
rowspan – O número de linhas pelo qual essa célula se expandirá
colspan – O número de colunas pelo qual essa célula se expandirá
nowrap – Desliga o enquadramento de texto em uma célula
width – Largura da célula
height – Altura da célula
Formulários
<form> </form>
Define um formulário
action – Responsável por determinar o exato local para onde as informações coletadas no formulário deverão ser enviadas
method – Método de empacotamento dos dados do formulário: get, post e enctype="multipart/form-data"
name – Nome do objeto
<input>
Caixa de texto
type – Tipo de dado: text, file, radio, checkbox, hidden, password, submit, reset, button, image
name – Identificação do campo
size – Largura
maxlength – Número máximo de caracteres permitidos
value – Texto que aparece dentro da caixa ou nome do botão
checked value – Valor assumido quando este campo for selecionado
<textarea> </textarea>
Permite criar elementos de entrada com características de texto
rows – Tamanho da linha da caixa de texto
cols – Tamanho da coluna da caixa de texto
name – Identificação do campo
wrap – Quebra de linha da caixa de texto: off, virtual, physical
<select> </select>
Seleção
name – Identificador
<option> </option>
Opção
value – Valor do campo
Se te foi útil, por favor, dê like ou reblog. /Gabi
Créditos: Codigofonte.
79 notes · View notes