Notwithstanding what Pavel Shved said - that it is probably more advisable getting used to Escaping Insert mode - here is an example set of mappings for quick navigation within Insert mode:
" make hjkl movements accessible from insert mode via the <Alt> modifier key
inoremap <A-h> <C-o>h
inoremap <A-j> <C-o>j
inoremap <A-k> <C-o>k
inoremap <A-l> <C-o>l
This will make Alt+h in Insert mode go one character left, Alt+j down and so on, analogously to hjkl in Normal mode.
You have to copy that code into your vimrc file to have it loaded every time you start vim (you can open that by typing :new $myvimrc starting in Normal mode).
Since the Alt modifier key is not mapped (to something important) by default, you can in the same fashion pull other (or all) functionality from Normal mode to Insert mode, e.g. moving to the beginning of the current word with Alt+b:
inoremap <A-b> <C-o>b
It is worth mentioning that there may be better uses for the Alt key than replicating Normal mode behaviour. E.g. here are mappings for copying from an adjacent line the portion from the current column till the end of the line:
" insert the rest of the line above the cursor
inoremap <A-e>
\<Esc>
\jl
\y$
\hk
\p
\a
" insert the rest of the line below the cursor
inoremap <A-y>
\<Esc>
\kl
\y$
\hj
\p
\a
(I used \ line continuation and indentation to increase clarity - the commands are interpreted as if written on a single line.)