UML Use Case Diagram Generator
Create UML use case diagrams showing actors, use cases, and their relationships
Actors
User
Admin
Use Cases
Login
View Dashboard
Manage Users
Generate Reports
Relationships
User → Login
User → View Dashboard
Admin → Manage Users
Admin → Generate Reports
System Boundary
Style Settings
Theme
Preview
Export
HTML Output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UML Use Case Diagram</title>
<style>
.use-case-diagram-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f4f8;
padding: 20px;
}
.use-case-diagram-container svg {
max-width: 100%;
height: auto;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.system-boundary {
fill: #ecf0f1;
stroke: #95a5a6;
stroke-width: 2;
}
.use-case {
fill: #ffffff;
stroke: #3498db;
stroke-width: 2;
}
.actor {
stroke: #2c3e50;
stroke-width: 2;
fill: none;
}
.relationship-line {
stroke: #34495e;
stroke-width: 1.5;
fill: none;
}
.label-text {
fill: #2c3e50;
}
</style>
</head>
<body>
<div class="use-case-diagram-container">
</div>
</body>
</html>