REISME is a simple, elegant HTML and CSS-based CV selector that allows users to browse through multiple professional profiles using pure HTML navigation.
- Responsive design
- Pure HTML and CSS implementation
- No JavaScript required
- Welcome page with smooth transitions
- Easy to customize and extend
reisme/
│
├── index.html # Main selector page
├── welcome.html # Initial welcome screen
├── cv1.html # First CV template
├── cv2.html # Second CV template
│
├── images/
│ ├── salman.jpg # Profile picture
│ ├── cv1.jpg # CV 1 thumbnail
│ ├── cv2.jpg # CV 2 thumbnail
│ └── welcome.jpg # Welcome page image
│
└── README.md # Project documentation
- Clone the repository
- Open
index.html
in a web browser - Click on CV thumbnails to view different profiles
- Create a new HTML file (e.g.,
cv3.html
) - Add a new thumbnail in the
images/
directory - Update the selector page to include the new CV
Modify the CSS in each HTML file to change:
- Color schemes
- Layout
- Typography
- Animations
- Navigation: Uses iframe and target attributes
- Responsiveness: Flexbox layout
- Styling: Pure CSS, no preprocessors
- Compatibility: Works in all modern browsers
Note: This project demonstrates a simple, elegant way to create a multi-CV selector using only HTML and CSS.