「我覺得我們大家保持一個對字型的意識,不論你在社會中扮演什麼角色,你都可以幫助到美感的推行。」– BBC
這集請到了我非常喜歡的 Podcast 節目「字型腦補」主持人 BBC 和元濃,從字型的角度切入,探索機場、台灣航空公司與國外航空公司的品牌形象。
我們一邊聊一邊喝台虎,到後面有種放超開的感覺 XD 輕鬆的聊天方式與大家一起從小細節看大格局,我很喜歡,也希望你會喜歡我們的討論!
很建議點開網誌文章,一起搭配航空公司塗裝的照片與字型範本參考,不然真的要自行腦補囉 XD
如果你喜歡我的節目,
請幫我到 iTunes (Apple Podcast) 打五顆星評分 https://apple.co/3a4ewQ5
It helps more than you know :)
別忘了「訂閱」與「分享」給你也會有興趣的朋友聽噢!
Now please sit back, relax, and enjoy the podcast!
商業合作、訪談合作 📧 hi@presstotalk.co
喜歡這個節目,請留言鼓勵我,讓我知道唷:https://pay.soundon.fm/podcasts/8dab5771-0bce-47b5-a5ef-6b791cfba7d4
Timestamp:
• (01:00) - 介紹 justfont 團隊及「字型腦補」Podcast
• (02:45) - 字體如何影響我們的日常生活與搭機?
• (04:45) - 機場:松山機場的「炸菜」、桃園機場的新細明體、成田第三航廈的 Neue Frutiger
• (10:08) - 有一種字型為各大機場的愛用字,為什麼?
• (12:09) - 華航帝雉號:新細明體為何母湯?
• (13:30) - 台灣航空公司的字體:華航、立榮、虎航、長榮、星宇
• (20:30) - 國際航空公司的字體 I:德航漢莎Helvetica、 英航、法航、荷航
• (25:33) - 國際航空公司的字體 II:泰航、國泰、阿聯酋、日航、中國國際航空、紐航
• (35:40) - 字型設計好奇ㄉ種種 QA :訂製一套字型要多少錢?練書法對字型設計有幫助嗎?
• (41:30) - BBC 和元濃最喜歡的字型分別是?
• (44:40) - 哪一句話惹怒字型設計師?
• (47:24) - 哪裡可以找到 justfont 團隊與「字型腦補」 Podcast (還不聽爆!)
We are everywhere:
- justfont - website, blog, facebook, instagram, 字型散步 Next
- 字型腦補 Podcast - SoundOn, Apple, Spotify, Google Podcast
- 節目 IG 飛行地圖與登機方式插畫家 Modertooo
- 這集的文章在這 - http://bit.ly/航空公司字型腦補
超級推薦 Chiao Artisanal Jewelry 的飾品,節目乘客輸入折扣碼享九折優惠:
官網 - http://chiaojewellery.com/
Promo code - presstotalk
Music used in this episode:
Early Hours, Take-off - Ikson
Classics - Joakim Karud
同時也有7部Youtube影片,追蹤數超過25萬的網紅Nonny Diary,也在其Youtube影片中提到,วันนี้นนนี่มารีวิว Digital BUJO (2021 planner) สุดน่ารักปุ๊กปิ๊ก สอนตั้งแต่วิธีโหลดเข้า GoodNotes เลย สามารถใช้ได้ทั้ง goodnotes และ Notability น้า แ...
code font 在 BorntoDev Facebook 的最讚貼文
🔥 สวัสดีจ้า วันนี้แอดจะมาบอกต่อ 5 ฟีเจอร์เด็ดๆ ของ Javascript Console ที่จะช่วยให้เราสามารถ print log ได้สะดวกมากยิ่งขึ้น มีตัวไหนบ้างไปดูกันเลย
.
⚡ 1) Console Groups - จะทำการ log ค่าออกมาในรูปแบบ Group จะทำให้ดูได้ง่ายมากยิ่งขึ้น
.
📝 วิธีการใช้งาน - เปิดด้วย console.group() และปิดด้วย console.groupEnd(); เช่น
.
console.group("Person Data");
console.log("Name: BorntoDev");
console.log("Age: 4");
console.groupEnd();
console.log("Outside of the group...");
.
⚡ 2) Live Expressions - เป็นฟีเจอร์ของ Google Chrome ที่จะช่วยแสดงผลลัพธ์จากโค้ด JavaScript แบบเรียลไทม์ได้เลย
.
⚡ 3) Timing Your Code - ใช้เพื่อจับเวลาในการทำงานของโค้ด
.
📝 วิธีการใช้งาน - เปิดด้วย console.time() และปิดด้วย console.timeEnd() เช่น
.
console.time("addHeadings");
for (let i = 0; i < 10000; i++) {
document.body.insertAdjacentHTML("beforeend", "
Heading
");}
console.timeEnd("addHeadings");
.
⚡ 4) Styling with CSS - สามารถใส่ CSS Style เวลา print log ออกมาได้เลย เฟี้ยวมาก555
.
📝 วิธีการใช้งาน - โดยจะใช้ร่วมกับ console.log() ใช้ %c ข้างหน้าข้อความที่ต้องการให้แสดง CSS เช่น
.
console.log("I am programer in %cborn to dev co., Ltd.", "color: yellow; font-weight: bold;");
.
⚡ 5) Assertions - ใช้ในการ Debug โค้ดของเราเขียนว่าสามารถทำงานได้ตามจุดประสงค์หรือไม่ ซึ่งจะ return ที่เป็น false เท่านั้น
.
📝 วิธีการใช้งาน - format console.assert(assertion, obj1 [, obj2, ..., objN]); เช่น
.
console.assert(true === true);
console.assert(true === false,"false");
.
จบแล้วกับ 5 ฟีเจอร์เด็ดที่แอดรวบรวมมาให้ ไหนใครลองไปใช้แล้วบ้าง ? หรือมีตัวไหนเด็ดๆนอกจาก 5 อันนี้ ไว้มาบอกต่อกันบ้างนะคร้าบบ 😄
.
borntoDev - 🦖 สร้างการเรียนรู้ที่ดีสำหรับสายไอทีในทุกวัน
code font 在 เกมถูกบอกด้วย v.2 Facebook 的最讚貼文
https://www.humblebundle.com/software/biggest-graphics-ever-software?partner=ggcp
แพ็คใหม่จาก Humble นะครัช ครั้งนี้คือ HUMBLE SOFTWARE BUNDLE: BIGGEST GRAPHICS EVER รายละเอียดมีดังนี้
.
จ่าย $1 รับ
20 Cyberpunk LUTs Pack
160+ Snow Photo Overlays Pack
100 Professional Lens Flare Overlays
.
จ่ายมากกว่า BTA รับเพิ่ม
540+ Amazing Photoshop Brushes
109 Magic Ring Photo Overlays Pack
2500+ Professional Photo Overlays Bundle
33 Wonderland Magic Photo Overlays
3000+ Space Backgrounds and Textures Collection
400 Beauty Kit Lightroom Presets
1000+ Realistic Photo Overlays Bundle
.
จ่าย $25 รับเพิ่ม
10000+ Cinematic Photo Overlays Bundle
7000+ Professional LUTs Bundle
7000+ Professional Lightroom Presets Bundle
7700+ High-Resolution Backgrounds Bundle
5000+ Professional Photo Overlays
1030+ Premium Photoshop Actions Bundle
650+ Professional Font Bundle
Big Design Graphics Bundle - 15000+ Resources
10000+ Professional Light Leaks Photo Overlays
2000+ Wedding Photo Overlays Bundle
1150 Sports Lightroom Presets Collection
1000+ Wedding Lightroom Presets Collection
.
รายละเอียดเพิ่มเติมดูที่หน้าร้านค้า
https://www.humblebundle.com/software/biggest-graphics-ever-software?partner=ggcp
.
ดีลนี้หมดเวลาในอีก 20 วันกว่าๆ
.
แพ็คเกจรวม Asset ของ Lightroom, เอฟเฟคสำหรับการทำ Overlay ภาพ, ฟอนต์, Texture และอื่นๆ ถ้าทำงานสายกราฟิกก็คุ้มอยู่ ได้ของไปทำงานเพียบในราคา 700 กว่าบาท
-------------------------------
Steam Wallet, Battle.net Code, PSN ซื้อง่าย ได้โค๊ดทันที >> GGKeyStore.com
-------------------------------
Humble Choice ประจำเดือน มี.ค. จ่าย $12 ประมาณ 360 บาท รับสตีมคีย์ Control, XCOM: Chimera Squad, ELEX, WWE 2K Battlegrounds และอื่นๆ ดูที่นี่ - https://bit.ly/3pZKtBe
code font 在 Nonny Diary Youtube 的最佳貼文
วันนี้นนนี่มารีวิว Digital BUJO (2021 planner) สุดน่ารักปุ๊กปิ๊ก สอนตั้งแต่วิธีโหลดเข้า GoodNotes เลย สามารถใช้ได้ทั้ง goodnotes และ Notability น้า แถม Memo pad อีก 20 ลาย คุ้มมากๆ ของมันต้องมีค่ะ!
- FAHFAHS | GOODNOTES Digital BUJO (2021 planner)
https://bit.ly/2XuUCcv
- FAHFAHS | GOODNOTES MEMO PAD
https://bit.ly/38AgmK6
- FAHFAHS MONMON FONT
https://fahfahsworld.com/shop/digital...
CODE สีสำหรับ mood tracker
https://www.facebook.com/fahfahsworld/posts/1544790429053771
#digitalbujo #goodnotes #ipad
สนใจให้รีวิวสินค้าหรือติดต่อลงโฆษณา?
Email : nonny@chonwilai.com
Line : nometcom (ติดต่องานรีวิวสินค้าเท่านั้น!!)
❌ห้ามคุยเล่น
-------------------------------
พูดคุยกันได้ที่แฟนเพจ??
https://www.facebook.com/nonnycom/
-------------------------------
Instagram : nonny.com_youtuber?
https://www.instagram.com/nonny.com_youtuber
code font 在 網頁設計x廣告行銷 Youtube 的最佳解答
❤免費訂閱Free subscribe❤
https://pse.is/submytube
❤聯絡我們 Contact Us❤
https://pse.is/forums_op
---------
✪✪✪FYR 補充資料如下✪✪✪
Tumult Hype 網頁設計軟體中文教學03 | 自訂義CSS HTML 修改字型 font family google font
章節chapter
影片00:00 前言介紹
影片01:32 Protect from external styles 簡介
影片03:31 修改自訂html code 在物件 或文字
影片04:30 如何打開 HEAD HTML 自訂新增代碼
影片06:44 google font 自訂字型修改 使用方式
相關資源下載 及查詢
https://freeday.cc/forum/index.php?p=/discussion/97/
https://fonts.google.com/
https://webdevtrick.com/
https://www.w3schools.com/css/css_intro.asp
■商業行銷&設計資訊相關討論區
https://freeday.cc/forum/index.php?p=/categories/freesource
■網站架設廣告行銷業務洽詢■
https://pse.is/forums_op
❤小額贊助頻道 Donate us a cup coffee❤
https://www.paypal.me/178yo
■聯絡我們 Contact Us
https://pse.is/forums_op
#網頁設計x廣告行銷
code font 在 Jessica Vu Youtube 的最佳解答
Hello! Hope this chit chat get ready with me helps you relax a little bit! ? Thank you to YSL Beauty for sponsoring this video ♡
Fluent in more than one language? Help me + other viewers by adding subtitles for this video in your language here! ?♀️
https://www.youtube.com/timedtext_cs_panel?c=UCBe3AJEV4vXAH5xs7eVyTTA&tab=2
FOLLOW ME!
✧ IG: https://www.instagram.com/jessyluxe
✧ TIKTOK: https://www.tiktok.com/@jessyluxe
✧ TWITTER: https://twitter.com/luxejessy
✧ SOUNDCLOUD: https://soundcloud.com/jessyluxe
✧ SPOTIFY: https://open.spotify.com/user/x39pm9yrqj1nklvv9ptgvsd3d
﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍
Hi! I filmed this chit chat grwm a little differently bc I wasn't in the mood to talk on the day I filmed...let me know what you think of this format! I wanted to do a chill catch-up talk and was going to sprinkle in some of your confessions (which you submitted on IG stories), but they were a little too wild for this video ? Maybe I'll do a separate video in the future.
ALSO uhh YSL Beauty? ? I didn't mention it in the video because I didn't want to sound like too much of a fangirl, but my first channel logo was inspired by the YSL logo (it was a JV interlocked in the same font) so this is a very full-circle moment for me! How surreal to be able to support and be supported by a brand I admire so much during this trying time. Thank you times a million ?♡ I hope this video brought you all a little bit of peace. I added the sound of rain and muffled the music so you can hear it better...although rainy days put me in a gloomy mood, I think the pitter-patter of raindrops falling against a window is the most soothing sound. I haven't heard the sound of thunder in so long. Missing FL and my family a little bit more today ⛈ I will visit when this is all over!
Hope you're all well + healthy ?
♡ xo
﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍
P R O D U C T S
EYES ⁺
˖ OLens Russian Velvet Green Soft Contact Lenses https://bit.ly/2yfnz2Q ‹ use code "JESSICAVU" for $ off ›
˖ Too Faced Born This Way Super Coverage Multi-Use Sculpting Concealer ("Almond") http://bit.ly/2x8lh1e
˖ Anastasia Beverly Hills Soft Glam Eyeshadow Palette ("Orange Soda", "Burnt Orange") https://bit.ly/3em4vjG
˖ ColourPop Pressed Powder Shadow ("Worth It") - no longer available; similar: https://bit.ly/2VrGoYd
˖ Revlon ColorStay Micro Hyper Precision Gel Eyeliner ("Brown") https://bit.ly/2xtzgmd
˖ Urban Decay 24/7 Glide-On Eye Pencil ("Torch") https://bit.ly/2Ry3pri
˖ Maybelline TattooStudio Eyeliner Pencil ("Bold Brown") http://bit.ly/2NJ9Mp8
˖ Petite Cosmetics Stick With Me Eyelash Glue https://bit.ly/2RaWYdA
˖ Velour Lashes False Lashes ("Would I Lie?") https://bit.ly/2V6JO3M
˖ ColourPop BFF Mascara ("Brownie Points") http://bit.ly/32o29dd
FACE ⁺
˖ YSL Touche Eclat Blur Primer ("Silver") https://bit.ly/2JyncTc
˖ YSL Touche Eclat High Cover Radiant Concealer ("2.5 Peach") https://seph.me/2z2iISN
˖ Focallure Sculpt Glow Contour Palette ("01 Maui Nights + Opal") http://bit.ly/34FIzL4
˖ Physicians Formula Butter Bronzer Murumuru Butter Bronzer ("Bronzer") https://bit.ly/2VurII9
˖ Make Up For Ever Star Lit Powder ("2 Frozen Gold") https://bit.ly/2RuzUqz
LIPS ⁺
˖ Buxom Plumpline Lip Liner ("Hush Hush") https://bit.ly/3aaykAp
˖ Anastasia Beverly Hills Pro Pencil ("Base 1") http://bit.ly/2CX1s1V
˖ YSL Rouge Volupte Rock'N Shine Lipstick ("Nude Solo", "Cacao Bounce") https://bit.ly/2xBa5OP
HAIR ⁺
˖ GHD Platinum White Professional Performance Styler Flat Iron, 1'' https://bit.ly/3b1U5Ut
WEARING ⁺
‹ use yesstyle code "JESSICA10" for $ off ›
˖ chuu ADAN Lightweight Rib Knit Cardigan ("Yellow") - no longer available; similar: https://bit.ly/2ya7E5G
˖ Artemis Apollo Pearl Kasim Earrings (I took off the dangle part) https://bit.ly/2XAd5FE
˖ MAKA Color Block Square Scarf https://bit.ly/2XxGQXz
˖ INK+IVY Bree Knit Throw Blanket ("Coral") https://bit.ly/3ekYbsY
︾
T O O L S
˖ Sigma Beauty 3DHD Blender Makeup Sponge http://bit.ly/2GOkuZA
˖ Sigma Beauty Tapered Blending Brush E40 http://bit.ly/2VnLqEz
˖ ColourPop Tapered Blending Brush E2 http://bit.ly/2G1nIds
˖ Sigma Beauty Eye Shading Brush E55 http://bit.ly/2NbCcaJ
˖ Shiseido Eyelash Curler http://bit.ly/2yTEe8H
˖ Luxie Rose Gold Tapered Face Brush 520 http://bit.ly/2RJMYX8
˖ ColourPop Small Tapered Brush E9 http://bit.ly/2V55rPe
˖ Sigma Beauty Shader Crease Brush E47 http://bit.ly/2GQc85s
︾
T E C H
˖ CAMERA
Canon EOS Rebel T6i DSLR
https://amzn.to/2PcG1Mk
˖ LENS
EF-S 18-55mm IS STM Kit Lens
https://amzn.to/2P7wAxx
˖ EDITING PROGRAM
Final Cut Pro X 10.4.1
︾
M U S I C
˖ Joey Howard - Moment (Instrumental) https://thmatc.co/?l=E66170C
˖ Eric Reprid - Something to Nothing https://thmatc.co/?l=CBD75CE7
˖ Dewey Wiles - Just Because You're Sorry - https://thmatc.co/?l=BDBD7B8D
﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍
? BUSINESS EMAIL: jessica@rare.global
FTC: Sponsored by YSL Beauty ♡ Some links listed are affiliate links and some products used I received in PR („• ֊ •„)
code font 在 Code Font | dafont.com 的相關結果
FULL version available here > https://www.myfonts.com/fonts/font-fabric/code-next/?refby=fontfabric. First seen on DaFont: February 25, 2012. ... <看更多>
code font 在 11 Best Programming Fonts - ITNEXT 的相關結果
11 Best Programming Fonts · 1. Hack · 2. DejaVu Sans Mono · 3. Monaco · 4. Source Code Pro · 5. Menlo · 6. Consolas · 7. Space Mono. ... <看更多>
code font 在 Coding 用字體推薦:Fira Code、JetBrains Mono、Consolas 的相關結果
寫程式也可以很賞心悅目,本篇就來介紹幾個美麗的寫程式用字體。 Fira Code. 第一個就是以其連字造型最為出名的Fira Code,針對不同程式碼常用的字元 ... ... <看更多>