CSSで作る!押したくなるボタンデザイン100(Web用)

.btn-circle-border-simple { display: inline-block; text-decoration: none; color: #668ad8; width: 120px; height: 120px; line-height: 120px; border-radius: 50%; border: solid 2px #668ad8; text-align: center; overflow: hidden; font-weight: bold; transition: .4s; } .btn-circle-border-simple:hover { background: #b3e1ff; }

情報源: CSSで作る!押したくなるボタンデザイン100(Web用)

【PHP】PHPMailerでメールを送信する際に、6.0系からお作法が変わっていてつまづいた話 – Webird Programming.Tech

$mail->Body = ‘This is the HTML message body in bold!’; $mail->AltBody = ‘This is the body in plain text for non-HTML mail clients’;

情報源: 【PHP】PHPMailerでメールを送信する際に、6.0系からお作法が変わっていてつまづいた話 – Webird Programming.Tech