Is there anyway to connect the ESP32 and the ESP32-CAM to the same website?

Hello,
I have been working on a walking robot for my science fair project. I want to install a camera into the robot. However, the ESP32-CAM does not have enough pins for eight servos. I do, however, have an ESP32-WROOM microcontroller that I use for the servos. I don't want that I have to open two webpages to access the camera and control the robot, and it will be easier later on if the two were connected. Is there anyway, either through hardware or software, that I can connect the two microcontrollers to the same website.
Thank you!

You can have the ESP32-CAM send commands from the web page through a serial port to the ESP32 servo controller.

Another alternative is to use an I2C servo controller, instead of an ESP32.

Thank you so much for the advice!
I definately will try that.

can you not load the other site into a division using html??
looks something like this..

<div> 
    <object type="text/html" data="http://validator.w3.org/" width="800px" height="600px" style="overflow:auto;border:5px ridge blue">
    </object>
 </div>

usually frowned upon but both sites are yours..
could probably make a local html doc that would load up both pages or add it into the WROOM to pull in cam..

good luck.. ~q

I'll try, Thank you.

I ended up just using ESP NOW for the project, but your tips were very helpful