If you are looking for a less efficient way to approach this proof, try proof by induction, if for no other reason than practice with inductive proofs:
Let $P(n)$ be the assertion: $$3n<n!,\;\;n\geq 7\tag{P(n)}$$
Establish the assertion is true for the base case $n = 7$, by computing $$3\cdot 7 < 7! \tag{P(7)}$$ and confirming the inequality holds for $n = 7$.
Assert the inductive hypothesis: assume the assertion $P(n)$ is true for $n = k$: that is, assume $$3k < k!\tag{inductive hypothesis: $P(k)$}$$
Then make the inductive step by showing that, using the inductive hypothesis, it follows that $$3(k+1) < (k + 1)!\tag{P(k+1)}$$
If you can prove $P(k + 1)$ follows from $P(k)$, then together with the truth of the base case, you conclude: therefore $P(n)$ is true.
The task is noting that $$3(k+1)=\color{blue}{\bf 3k}+3<\color{blue}{\bf k!}+3<k!(k+1) = (k + 1)!$$ (note we used the inductive hypothesis $\color{blue}{\bf 3k<k!}$). Hence $P(k+1)$ is indeed true, given $P(k)$.
With the base case, you are done, you have proven that $P(n)$ is true for $n\geq 7$.