\documentclass[12pt, varwidth, border=5mm]{standalone}
\usepackage{tikz}
\usepackage{amsmath}
% Underlining package
\usepackage{ulem}
\usetikzlibrary{angles,quotes}
\usetikzlibrary{intersections}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{calc}
% \usepackage[a4paper, portrait, margin=1cm]{geometry}


\begin{document}
\section*{ }
    
$\text{h} = \text{\dotuline{~~~~~~~}}^\circ$
\begin{tikzpicture}[scale=1.0, baseline=(current bounding box.north)]
  \begin{scope}[rotate=134]
    % Draw the first line
    \draw[<->>, >={Stealth[scale=1.3]}, name path=P1] (0, 0) -- (2.0000000000000004, 3.4641016151377544);
    % Draw the second line with the calculated offsets
    \draw[<->>, >={Stealth[scale=1.3]}, name path=P2] (1.7320508075688774, 0) -- (3.7320508075688776, 3.4641016151377544);
    % Draw the transversal through the middle of the parallel lines
    \draw[<->, >=Stealth, name path=P3] (-0.49999999999999956, 1.7320508075688772) -- (4.232050807568877, 1.7320508075688772);
    \path [name intersections={of=P1 and P3,by=A}];
    \path [name intersections={of=P2 and P3,by=B}];
    % Draw the angle
    \coordinate (p1s) at (0, 0);
    \coordinate (p1e) at (2.0000000000000004, 3.4641016151377544);
    \coordinate (p2s) at (1.7320508075688774, 0);
    \coordinate (p2e) at (3.7320508075688776, 3.4641016151377544);
    \coordinate (ts) at (-0.49999999999999956, 1.7320508075688772);
    \coordinate (te) at (4.232050807568877, 1.7320508075688772);
    \draw pic["$h$", draw=black, -, angle eccentricity=1.8, angle radius=0.4cm] {angle=p2s--B--te};
\draw pic["$60^\circ$", draw=black, -, angle eccentricity=1.8, angle radius=0.4cm] {angle=ts--A--p1s};

  \end{scope}
\end{tikzpicture}

\end{document}
