-1

I'm relatively new to website development and haven't yet moved onto java script or PHP. I want to create a very basic age verification page that allows entry into a mock website for my portfolio that i can show to any potential employers for when i start my apprenticeship.

Paulie_D
  • 95,305
  • 9
  • 106
  • 134
C.Garth
  • 1
  • 1
  • 3
    Welcome to Stack Overflow! It is expected that you at least attempt to code this for yourself. Stack Overflow is not a code writing service. I would suggest that you do some [**additional research**](http://meta.stackoverflow.com/questions/261592/how-much-research-effort-is-expected-of-stack-overflow-users), either via Google or by searching SO, make an attempt and. if you still have trouble, come back with **your code** and explain what you have tried and why it did not work. – Paulie_D Oct 10 '16 at 17:48

1 Answers1

0

You could use this input which does not require any scripts:

<input type="number" name="age" min="18">

Refer to the following link for more insight: http://www.w3schools.com/html/html_forms.asp

Herbs
  • 127
  • 2
  • 8