如何在Gmail的圖片中插入超鏈接

gmail logo

Adding hyperlinks is an efficient way of getting your reader to the intended web page. Though it’s no secret that you can add hyperlinks to text, Gmail also lets you add hyperlinks to images in the body of the email. Here’s how to make it happen.

添加超鏈接是一種將讀者吸引到預期網頁的有效方法。 雖然可以在文本中添加超鏈接不是什么秘密,但Gmail還允許您將超鏈接添加到電子郵件正文中的圖像。 這是實現它的方法。

在Gmail中插入圖片 (Inserting Images in Gmail)

We’ll assume that you’re already in your Gmail account. If not, go ahead and get there. When you’re ready, select the “Compose” button which can be found at the top-left corner.

我們假設您已經在您的Gmail帳戶中。 如果沒有,繼續前進。 準備就緒后,選擇“撰寫”按鈕,該按鈕位于左上角。

Compose

Once selected, the “New Message” window will appear. When you’ve filled out the email address (1) and subject (2), and typed the body of your message (3), go ahead and place the cursor where you want to insert your image (4).

選擇后,將出現“新消息”窗口。 填寫電子郵件地址(1)和主題(2),并鍵入郵件的正文(3)后,繼續將光標放在要插入圖像的位置(4)。

New message window

Click the “Insert Photo” icon at the bottom of the window.

點擊窗口底部的“插入照片”圖標。

insert image icon

In the “Insert Photo” window, you can drag an image or browse for one. If the image you’re looking for isn’t in your profile’s “Photos” or “Albums,” then you can browse the web or upload one from your computer.

在“插入照片”窗口中,您可以拖動圖像或瀏覽一個。 如果您要查找的圖像不在個人資料的“照片”或“相冊”中,則您可以瀏覽網絡或從計算機上傳圖片。

insert photo options

After you select the image, but before you insert it, make sure to select the “Inline” option at the bottom-right corner of the screen. You have the option of inserting the image as an attachment, but that won’t allow us to achieve our goals here.

選擇圖像后,但在插入圖像之前,請確保選擇屏幕右下角的“內聯”選項。 您可以選擇將圖像作為附件插入,但這不能使我們在這里實現目標。

inline

Click “Insert” when you’re ready.

準備好后,點擊“插入”。

insert image

Your image will now appear in the body of the email. Don’t worry if the image is a bit large—you can resize it. Select the image, grab the handle at any corner, and then drag it to the desired size.

您的圖像現在將出現在電子郵件的正文中。 如果圖像太大,請不要擔心,您可以調整其大小。 選擇圖像,抓住任意角落的手柄,然后將其拖動到所需的尺寸。

在圖像中插入超鏈接 (Inserting Hyperlinks in Images)

Now you’re ready to insert a hyperlink. Highlight the image by clicking and dragging your cursor over it.

現在,您可以插入超鏈接了。 通過在圖像上單擊并拖動光標來突出顯示圖像。

Note:?You must highlight the image this way instead of just clicking to select it if you want to insert a hyperlink.

注意:如果要插入超鏈接,則必須以這種方式突出顯示圖像,而不是單擊以選中它。

highlighted image

Next, select the “Insert Link” icon at the bottom of the window. Alternatively, you can press Ctrl+K.

接下來,選擇窗口底部的“插入鏈接”圖標。 或者,您可以按Ctrl + K。

insert link

You’ll now be greeted by the “Edit Link” window. In the “Text to display” box, you should see the image name followed by the image format type. If this field is blank, you didn’t highlight your image. Go back and try again.

現在,“編輯鏈接”窗口將為您打招呼。 在“要顯示的文本”框中,您應該看到圖像名稱以及圖像格式類型。 如果該字段為空白,則您沒有突出顯示圖像。 返回并重試。

In the “Link to” section, enter the URL you want to use. Click “OK” when you’re done.

在“鏈接到”部分中,輸入要使用的URL。 完成后,單擊“確定”。

insert hyperlink

You’ve now successfully inserted a hyperlink in an image in Gmail. As a matter of good practice though, let’s confirm that the link was correctly inserted. Go ahead and select the image again. If you inserted the hyperlink properly, you’ll see a “Go to link” message followed by the destination URL.

您現在已成功在Gmail中的圖像中插入了超鏈接。 不過,作為一種好的做法,讓我們確認正確插入了鏈接。 繼續并再次選擇圖像。 如果正確插入了超鏈接,您將看到“轉到鏈接”消息,后跟目標URL。

go to link

Once the recipient receives the email, all they need to do is click the image to navigate to the URL!

收件人收到電子郵件后,他們所需要做的就是單擊圖像導航至URL!

翻譯自: https://www.howtogeek.com/408102/how-to-insert-hyperlinks-in-images-in-gmail/

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/278644.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/278644.shtml
英文地址,請注明出處:http://en.pswp.cn/news/278644.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

內聯元素居中

父元素&#xff1a; height:100px; line-height:100px; // 與高相同 text-align:center; 子元素: display:inline; vertical-align: middle; 適用圖片、文字 <div><div class"wrapper"><span>我是文字</span></div><div class&qu…

防止html標簽轉義

function htmlDecode ( str ) {var ele document.createElement(span);ele.innerHTML str;return ele.textContent;} 例如body下邊所有的p標簽都防止轉義&#xff1a; $.each($("body").find(p),function(){this.innerHTML htmlDecode(this.innerHTML);}); 轉載于…

新垣結衣自拍照_如何阻止自拍照出現在iPhone的自拍照專輯中

新垣結衣自拍照Khamosh PathakKhamosh PathakThe Photos app on your iPhone automatically populates all photos from the front-facing camera in the Selfies album. But what if you don’t want a photo to appear there? Here are a couple of solutions. iPhone上的“…

前端個人筆記

前端個人筆記1.vue項目安裝依賴/插件時忘記--save&#xff0c;再次install出問題并且沒有報錯。2.margin移動元素不顯示背景色3.新知識&#xff1a;media 條件樣式4.入坑&#xff1a;row和col不能分離&#xff0c;span24不能不寫5.聚焦實現滾動到指定元素1.vue項目安裝依賴/插件…

kernel中對文件的讀寫【學習筆記】【原創】

/*1. 頭文件 */ #include <linux/init.h> #include <linux/module.h> #include <linux/moduleparam.h> #include <linux/kernel.h> #include <linux/list.h> #include <linux/fs.h> #include <linux/uaccess.h>MODULE_PARM_DESC(iva…

ssm項目快速搭建(注解)-依賴

父層jar包版本控制&#xff0c;管理配置 <!-- 集中定義依賴版本號 --> <properties> <junit.version>4.12</junit.version> <spring.version>4.2.4.RELEASE</spring.version> <pagehelper.version>4.0.0<…

如何設置自定義任務欄圖標_如何為任何應用程序自定義Windows 7任務欄圖標

如何設置自定義任務欄圖標Would you like to change out the icons on your taskbar with a beautiful set of icons that all go together? Here’s how you can change out the random candy-colored icons for a stylish icon set of your choice. 您是否要用一組漂亮的圖…

給谷歌瀏覽器安裝vue調試工具:vue-devtools

安裝vue-devtools一、拉取項目二、install、build三、添加擴展四、使用舉例一、拉取項目 vue-devtools&#xff1a;git地址&#xff08;master分支&#xff09; 非master分支在build的時候會報錯。 二、install、build 1、打開cmd進入項目目錄&#xff0c;可以選擇npm/cnpm/…

如何找到Windows 7或8家庭組密碼?

So you’re about to setup your new Windows 7 PC into your Homegroup when you realized that you have no idea what the password is. How do you find it? It’s actually pretty simple, if you know where to look. 因此&#xff0c;當您意識到自己不知道密碼是什么時…

vue3.0、cli4項目引入element plus

element團隊為新版的 vue-cli4 準備了相應的 Element Plus 插件 安裝依賴 npm install element-plus --savemain.js全局引入&#xff0c;樣式文件需要單獨引入 import { createApp } from vue import ElementPlus from element-plus; import element-plus/lib/theme-chalk/in…

MySQL索引背后的數據結構及算法原理

title: MySQL索引背后的數據結構及算法原理 date: 2018-07-25 19:50:16 tags: mysql categories: mysql --- 本文轉載自http://blog.codinglabs.org/articles/theory-of-mysql-index.html 摘要 本文以MySQL為研究對象&#xff0c;討論與數據庫索引相關的一些話題。特別需要說明…

[SDOI2015]約數個數和

Sol 首先有個結論\(\sum_{i1}^{m}\sum_{j1}^{n}d(i*j)\sum_{i1}^{m}\sum_{j1}^{n}\sum_{x|i}\sum_{y|i}[gcd(x,y)1]\) 證明&#xff1a;可以看po姐的博客 接著這個式子推\[ 原式\sum_{x1}^{n}\sum_{y1}^{m}([gcd(x, y)1] * \sum_{x|i}\sum_{y|i} 1)\\ \sum_{x1}^{n}\sum_{y1}^{…

使用mcBackup備份Windows 7 Media Center設置

If you’re a HTPC enthusiast and use Windows 7 Media Center, you probably have a lot of scheduled recordings and channel lineups you’d like to backup. Here we take a look at a simple tool that will allow you to do it easily. 如果您是HTPC愛好者并且使用Wind…

【CF961G】Partitions(第二類斯特林數)

【CF961G】Partitions&#xff08;第二類斯特林數&#xff09; 題面 CodeForces洛谷 題解 考慮每個數的貢獻&#xff0c;顯然每個數前面貢獻的系數都是一樣的。 枚舉當前數所在的集合大小&#xff0c;所以前面的系數\(p\)就是&#xff1a;\[\begin{aligned} p&\sum_{i1}^n{…

js綁定事件和阻止事件

js事件一、綁定事件1、html綁定2、el屬性綁定3、el函數綁定4、事件捕獲與冒泡5、js常見事件稱名二、阻止事件1、event.stopPropagation()2、return false3、event.preventDefault();4、兼容寫法一、綁定事件 1、html綁定 <div onclick"alert(click!)">click&…

linux中service的問題

1.描述問題 2.解決方案 systemctl stop firewalld systemctl mask firewalldThen, install the iptables-services package: yum install iptables-servicesEnable the service at boot-time: systemctl enable iptablesManaging the service systemctl [stop|start|restart] i…

火狐可以打開谷歌打不開_如何設置Firefox以使用Google Apps打開所有內容

火狐可以打開谷歌打不開Google offers a pretty comprehensive set of online applications which many of you probably take advantage of. Here is how to easily configure Firefox to use Google’s online offerings for email, RSS, PDF and office documents as your d…

設置第三方的SMTP服務

取得授權碼: 轉載于:https://www.cnblogs.com/0909/p/10153499.html

表單重復提交問題

2019獨角獸企業重金招聘Python工程師標準>>> 為什么會發生表單重復提交呢&#xff1f; 網絡延時 在平時開發中&#xff0c;如果網速比較慢的情況下&#xff0c;用戶提交表單后&#xff0c;發現服務器半天都沒有響應&#xff0c;那么用戶可能會以為是自己沒有提交表單…

js事件名稱集

一般事件 名稱描述onClick鼠標點擊事件&#xff0c;多用在某個對象控制的范圍內的鼠標點擊onDblClick鼠標雙擊事件onMouseDown鼠標上的按鈕被按下了onMouseUp鼠標按下后&#xff0c;松開時激發的事件onMouseOver當鼠標移動到某對象范圍的上方時觸發的事件onMouseMove鼠標移動時…