AWS load-balancer DNS not redirect to my application

Hey, I’m a beginner in Kubernetes and completed kodekloude beginner Kubernetes course but facing some issue with load-balancer service, I’m using AWS EKS service and load balancer at the front of my application for internet traffic, when I deploy my YAML file on EKS, EKS create load-balancer for us but I’m unable to enter into my application using load, load-balancer DNA show “This site is not accessible”
yaml service file:
apiVersion: v1
kind: Service
metadata:
name: frontend-service

spec:
type: LoadBalancer
ports:
- protocol: TCP
port: 3200
targetPort: 3000
nodePort: 30010
selector:
name: front-end
app: client

it seems that u exposed the service on port 3200 not 80. So, try the LB:3200