\documentclass[10pt,a4paper]{article} % Packages \usepackage{fancyhdr} % For header and footer \usepackage{multicol} % Allows multicols in tables \usepackage{tabularx} % Intelligent column widths \usepackage{tabulary} % Used in header and footer \usepackage{hhline} % Border under tables \usepackage{graphicx} % For images \usepackage{xcolor} % For hex colours %\usepackage[utf8x]{inputenc} % For unicode character support \usepackage[T1]{fontenc} % Without this we get weird character replacements \usepackage{colortbl} % For coloured tables \usepackage{setspace} % For line height \usepackage{lastpage} % Needed for total page number \usepackage{seqsplit} % Splits long words. %\usepackage{opensans} % Can't make this work so far. Shame. Would be lovely. \usepackage[normalem]{ulem} % For underlining links % Most of the following are not required for the majority % of cheat sheets but are needed for some symbol support. \usepackage{amsmath} % Symbols \usepackage{MnSymbol} % Symbols \usepackage{wasysym} % Symbols %\usepackage[english,german,french,spanish,italian]{babel} % Languages % Document Info \author{HKJEong} \pdfinfo{ /Title (htmlbasicsyntax.pdf) /Creator (Cheatography) /Author (HKJEong) /Subject (HTMLBasicSyntax Cheat Sheet) } % Lengths and widths \addtolength{\textwidth}{6cm} \addtolength{\textheight}{-1cm} \addtolength{\hoffset}{-3cm} \addtolength{\voffset}{-2cm} \setlength{\tabcolsep}{0.2cm} % Space between columns \setlength{\headsep}{-12pt} % Reduce space between header and content \setlength{\headheight}{85pt} % If less, LaTeX automatically increases it \renewcommand{\footrulewidth}{0pt} % Remove footer line \renewcommand{\headrulewidth}{0pt} % Remove header line \renewcommand{\seqinsert}{\ifmmode\allowbreak\else\-\fi} % Hyphens in seqsplit % This two commands together give roughly % the right line height in the tables \renewcommand{\arraystretch}{1.3} \onehalfspacing % Commands \newcommand{\SetRowColor}[1]{\noalign{\gdef\RowColorName{#1}}\rowcolor{\RowColorName}} % Shortcut for row colour \newcommand{\mymulticolumn}[3]{\multicolumn{#1}{>{\columncolor{\RowColorName}}#2}{#3}} % For coloured multi-cols \newcolumntype{x}[1]{>{\raggedright}p{#1}} % New column types for ragged-right paragraph columns \newcommand{\tn}{\tabularnewline} % Required as custom column type in use % Font and Colours \definecolor{HeadBackground}{HTML}{333333} \definecolor{FootBackground}{HTML}{666666} \definecolor{TextColor}{HTML}{333333} \definecolor{DarkBackground}{HTML}{A3A3A3} \definecolor{LightBackground}{HTML}{F3F3F3} \renewcommand{\familydefault}{\sfdefault} \color{TextColor} % Header and Footer \pagestyle{fancy} \fancyhead{} % Set header to blank \fancyfoot{} % Set footer to blank \fancyhead[L]{ \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{C} \SetRowColor{DarkBackground} \vspace{-7pt} {\parbox{\dimexpr\textwidth-2\fboxsep\relax}{\noindent \hspace*{-6pt}\includegraphics[width=5.8cm]{/web/www.cheatography.com/public/images/cheatography_logo.pdf}} } \end{tabulary} \columnbreak \begin{tabulary}{11cm}{L} \vspace{-2pt}\large{\bf{\textcolor{DarkBackground}{\textrm{HTMLBasicSyntax Cheat Sheet}}}} \\ \normalsize{by \textcolor{DarkBackground}{HKJEong} via \textcolor{DarkBackground}{\uline{cheatography.com/67941/cs/17102/}}} \end{tabulary} \end{multicols}} \fancyfoot[L]{ \footnotesize \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{LL} \SetRowColor{FootBackground} \mymulticolumn{2}{p{5.377cm}}{\bf\textcolor{white}{Cheatographer}} \\ \vspace{-2pt}HKJEong \\ \uline{cheatography.com/hkjeong} \\ \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Cheat Sheet}} \\ \vspace{-2pt}Not Yet Published.\\ Updated 18th September, 2018.\\ Page {\thepage} of \pageref{LastPage}. \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Sponsor}} \\ \SetRowColor{white} \vspace{-5pt} %\includegraphics[width=48px,height=48px]{dave.jpeg} Measure your website readability!\\ www.readability-score.com \end{tabulary} \end{multicols}} \begin{document} \raggedright \raggedcolumns % Set font size to small. Switch to any value % from this page to resize cheat sheet text: % www.emerson.emory.edu/services/latex/latex_169.html \footnotesize % Small font. \begin{multicols*}{3} \begin{tabularx}{5.377cm}{x{2.14011 cm} x{2.83689 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Basics}} \tn % Row 0 \SetRowColor{LightBackground} \textless{}!DOCTYPE html\textgreater{} & Must start with this \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} \textless{}html\textgreater{} & Start 2 \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} \textless{}body\textgreater{} & Visible part starts \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} \textless{}h1\textgreater{} ... \textless{}h6\textgreater{} & headings \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{\textless{}p\textgreater{}} \tn % Row Count 5 (+ 1) % Row 5 \SetRowColor{white} \textless{}a\textgreater{} & links \tn % Row Count 6 (+ 1) % Row 6 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{\textless{}img\textgreater{}} \tn % Row Count 7 (+ 1) % Row 7 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}buttons\textgreater{}} \tn % Row Count 8 (+ 1) % Row 8 \SetRowColor{LightBackground} \textless{}ul\textgreater{} & bullet (unordered) \tn % Row Count 9 (+ 1) % Row 9 \SetRowColor{white} \textless{}ol\textgreater{} & numbered (ordered) \tn % Row Count 10 (+ 1) % Row 10 \SetRowColor{LightBackground} \textless{}li\textgreater{} & items in \textless{}li\textgreater{}st \tn % Row Count 11 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{1.24425 cm} x{3.73275 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Attributes}} \tn % Row 0 \SetRowColor{LightBackground} name= "value" & basic format \tn % Row Count 2 (+ 2) % Row 1 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{src} \tn % Row Count 3 (+ 1) % Row 2 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{width/height} \tn % Row Count 4 (+ 1) % Row 3 \SetRowColor{white} alt & alternative text to be used, when an image cannot be displayed. \tn % Row Count 7 (+ 3) % Row 4 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{style} \tn % Row Count 8 (+ 1) % Row 5 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{lang} \tn % Row Count 9 (+ 1) % Row 6 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{\textless{}p title="value"\textgreater{}} \tn % Row Count 10 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{All HTML elements can have attributes \newline Provide additional information about an element \newline Always specified in the start tag \newline Single quotations can be used; must if value contains double quotes} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{2.83689 cm} x{2.14011 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Styles, Text Formats}} \tn % Row 0 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{style="property:value;"} \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} background-color & body \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} color & text color \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{font-family:xxx} \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{font-size} \tn % Row Count 5 (+ 1) % Row 5 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{text-align:(center,right)} \tn % Row Count 6 (+ 1) % Row 6 \SetRowColor{LightBackground} \textless{}b\textgreater{} & bold \tn % Row Count 7 (+ 1) % Row 7 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}strong\textgreater{}} \tn % Row Count 8 (+ 1) % Row 8 \SetRowColor{LightBackground} \textless{}i\textgreater{} & italic \tn % Row Count 9 (+ 1) % Row 9 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}em\textgreater{}} \tn % Row Count 10 (+ 1) % Row 10 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{\textless{}mark\textgreater{}} \tn % Row Count 11 (+ 1) % Row 11 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}small\textgreater{}} \tn % Row Count 12 (+ 1) % Row 12 \SetRowColor{LightBackground} \textless{}del\textgreater{} & 취소선 \tn % Row Count 13 (+ 1) % Row 13 \SetRowColor{white} \textless{}ins\textgreater{} & Inserted \tn % Row Count 14 (+ 1) % Row 14 \SetRowColor{LightBackground} \textless{}sub\textgreater{} & 아래깔림 \tn % Row Count 15 (+ 1) % Row 15 \SetRowColor{white} \textless{}sup\textgreater{} & 위깔림 \tn % Row Count 16 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{\textless{}strong\textgreater{} as \textless{}b\textgreater{}, and \textless{}em\textgreater{} as \textless{}i\textgreater{}. 똑같이 보이지만, \textless{}strong\textgreater{} and \textless{}em\textgreater{} means that the text is "important".} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{p{0.64701 cm} x{4.32999 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Headings, Paragraphs}} \tn % Row 0 \SetRowColor{LightBackground} \textless{}hr\textgreater{} & 가로선 \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} \textless{}head\textgreater{} & metadata container. between html \& body \tn % Row Count 3 (+ 2) % Row 2 \SetRowColor{LightBackground} \textless{}pre\textgreater{} & font, space, line break preserved \tn % Row Count 4 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{1.79172 cm} x{3.18528 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Quotes and Citation Elements}} \tn % Row 0 \SetRowColor{LightBackground} \textless{}q\textgreater{} & short \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}blockquote\textgreater{}} \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{\textless{}abbr\textgreater{}} \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}address\textgreater{}} \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} \textless{}cite\textgreater{} & work title \tn % Row Count 5 (+ 1) % Row 5 \SetRowColor{white} \textless{}bdo dir=""\textgreater{} & text direction change \tn % Row Count 6 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{Marking abbreviations - give useful information to browsers, translation systems and search-engines.} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{2.78712 cm} x{2.18988 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Comments}} \tn % Row 0 \SetRowColor{LightBackground} \textless{}!-{}- -{}-\textgreater{} & Comment \tn % Row Count 1 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{1.9908 cm} x{2.9862 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Colors}} \tn % Row 0 \SetRowColor{LightBackground} border & property for setting border \tn % Row Count 2 (+ 2) % Row 1 \SetRowColor{white} rgb() & RGB, 0-255 \tn % Row Count 3 (+ 1) % Row 2 \SetRowColor{LightBackground} \#ffrrggbb & HEX value, 00 to ff \tn % Row Count 4 (+ 1) % Row 3 \SetRowColor{white} hsl() & HSL value \tn % Row Count 5 (+ 1) % Row 4 \SetRowColor{LightBackground} Saturation & intensity - how much gray \tn % Row Count 7 (+ 2) % Row 5 \SetRowColor{white} Lightness & light - how much whiteness \tn % Row Count 9 (+ 2) % Row 6 \SetRowColor{LightBackground} Alpha (rgba, hsla) & transparency value \tn % Row Count 11 (+ 2) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{1.94103 cm} x{3.03597 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{CSS}} \tn % Row 0 \SetRowColor{LightBackground} CSS & Cascading Style Sheets \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} Inline & in elements \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} Internal & \textless{}style\textgreater{} in \textless{}head\textgreater{} \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} External & External CSS file \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} padding & text - border space \tn % Row Count 5 (+ 1) % Row 5 \SetRowColor{white} margin & border-border space \tn % Row Count 6 (+ 1) % Row 6 \SetRowColor{LightBackground} id="idname" & Id element-\textgreater{} \tn % Row Count 7 (+ 1) % Row 7 \SetRowColor{white} \#idname\{ \} & define style for it \tn % Row Count 8 (+ 1) % Row 8 \SetRowColor{LightBackground} class & attribute, used to classify \tn % Row Count 10 (+ 2) % Row 9 \SetRowColor{white} \textless{}p class="classname"\textgreater{} \textless{}/p\textgreater{} & classify certain element \tn % Row Count 12 (+ 2) % Row 10 \SetRowColor{LightBackground} \textless{}link rel="\_\_" href="\_\_"\textgreater{} & external references \tn % Row Count 14 (+ 2) % Row 11 \SetRowColor{white} p.\_\_\_\{ \} & define class property. \_\_\_=name of class, definition goes inside \{ \} \tn % Row Count 17 (+ 3) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{CSS describes how HTML elements are to be displayed on screen, paper, or in other media.} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{2.53827 cm} x{2.43873 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{links}} \tn % Row 0 \SetRowColor{LightBackground} \textless{}a href = "url"\textgreater{}link text\textless{}/a\textgreater{} & link syntax \tn % Row Count 2 (+ 2) % Row 1 \SetRowColor{white} local link & link to the same website \tn % Row Count 4 (+ 2) % Row 2 \SetRowColor{LightBackground} target="" & specify where to open, in the document \tn % Row Count 6 (+ 2) % Row 3 \SetRowColor{white} \_blank & new window \tn % Row Count 7 (+ 1) % Row 4 \SetRowColor{LightBackground} \_self & in the same window(default) \tn % Row Count 9 (+ 2) % Row 5 \SetRowColor{white} \_parent & in the parent frame \tn % Row Count 10 (+ 1) % Row 6 \SetRowColor{LightBackground} \_top & in the full body of window \tn % Row Count 12 (+ 2) % Row 7 \SetRowColor{white} framename & in a named frame \tn % Row Count 13 (+ 1) % Row 8 \SetRowColor{LightBackground} \textless{}a href="default.asp"\textgreater{} ; \textless{}img \textgreater{} ; \textless{}/a\textgreater{} & link in image syntax \tn % Row Count 15 (+ 2) % Row 9 \SetRowColor{white} title="" & attribute to a. link title \tn % Row Count 17 (+ 2) % Row 10 \SetRowColor{LightBackground} \textless{}h2 id="C4"\textgreater{}ch.4\textless{}/h2\textgreater{} & create bookmark (1/2) -\textgreater{} \tn % Row Count 19 (+ 2) % Row 11 \SetRowColor{white} \textless{}a href="\#C4\textgreater{}Jump\textless{}/a\textgreater{} & add link to bookmark \tn % Row Count 21 (+ 2) % Row 12 \SetRowColor{LightBackground} \textless{}a href="html\_demo.html\#C4"\textgreater{} & link from other page \tn % Row Count 23 (+ 2) % Row 13 \SetRowColor{white} \textless{}a \seqsplit{href="https://www.w3schools.com/html/default}.asp"\textgreater{}HTML tutorial\textless{}/a\textgreater{} & link from external paths \tn % Row Count 27 (+ 4) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{local link (link to the same web site) is specified with a relative URL (without http://www....)} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{2.09034 cm} x{2.88666 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Image}} \tn % Row 0 \SetRowColor{LightBackground} \seqsplit{float:right/left} & float to text \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}map\textgreater{}} \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{name=""} \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} \textless{}area\textgreater{} & define clickable areas \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{style: background-image} \tn % Row Count 5 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{2.38896 cm} x{2.58804 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Image}} \tn % Row 0 \SetRowColor{LightBackground} float:right/left & float to text \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}map\textgreater{}} \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{name=""} \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} \textless{}area\textgreater{} & define clickable areas \tn % Row Count 5 (+ 2) % Row 4 \SetRowColor{LightBackground} style: \seqsplit{"background-image:url(} )" & background image, to body/ paragraph \tn % Row Count 7 (+ 2) % Row 5 \SetRowColor{white} \textless{}picture\textgreater{} & show different images \tn % Row Count 9 (+ 2) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{1.59264 cm} x{3.38436 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{Forms}} \tn % Row 0 \SetRowColor{LightBackground} \textless{}form\textgreater{} & user input \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} \mymulticolumn{2}{x{5.377cm}}{\textless{}input\textgreater{}} \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{type=""} \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} \seqsplit{type="radio"} & radio - 다지선다 \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{type="submit"} \tn % Row Count 5 (+ 1) % Row 5 \SetRowColor{white} action & att: when submitted \tn % Row Count 6 (+ 1) % Row 6 \SetRowColor{LightBackground} target & att. \tn % Row Count 7 (+ 1) % Row 7 \SetRowColor{white} method & att. \tn % Row Count 8 (+ 1) % Row 8 \SetRowColor{LightBackground} name & att. name of data received \tn % Row Count 9 (+ 1) % Row 9 \SetRowColor{white} \textless{}fieldset\textgreater{} & group related data \tn % Row Count 10 (+ 1) % Row 10 \SetRowColor{LightBackground} \textless{}legend\textgreater{} & caption \tn % Row Count 11 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{Form elements are different types of input elements, like text fields, checkboxes, radio buttons, submit buttons, and more.} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} % That's all folks \end{multicols*} \end{document}