HTML tags, lists, tables related

Classification of HTML tags HTML tags can be divided into the following categories: Title tag: used to define the title of the web page, divided into h1, h2, h3, h4, h5 and h6. Paragraph tag: used to define paragraphs of text, commonly used p tags. Link tag: used to define links, the commonly used one […]

HTML and css to create a QQ number application page

css .block{ width: 800px; height: 1000px; } .headlinePicture{ width: 200px; height: 63px; float: left; } .headlineTxt{ width: 500px; height: 63px; float: left; text-align: right; } .column{ width: 700px; height: 40px; float: left; background-color:#B9E2FE; } .insideColumn{ width: 580px; height: 30px; float: left; background-color: #F2FCFE; } .txtColumn{ width: 120px; height: 30px; text-align: center; float: left; } .blankColumn{ […]

Python sends emails in html format with pictures and parameters

#coding:utf-8 #!/usr/local/python3.6/bin/python3 import pandas as pd import pyodbc import matplotlib.pyplot as plt import waterfall_chart import numpy as np from datetime import datetime, timedelta import smtplib from email.mime.text import MIMEText from email.mime.image import MIMEImage from email.mime.application import MIMEApplication from email.mime.multipart import MIMEMultipart from email.header import Header import os cnxn = pyodbc.connect( ‘DRIVER={SQL Server};SERVER=;DATABASE=;UID=;PWD=’)#DRIVER={ODBC Driver 17 for […]