Files
dual-screen/index.html
eric.bouvier 7cdaad52bb Update index.html
Removed the footer container the folder structure. Not needed for deployment
2026-01-27 16:21:16 +00:00

231 lines
7.6 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Dual Monitor Setup (Windows + Remote Desktop)</title>
<style>
:root {
--bg: #0b0f14;
--panel: #121826;
--text: #e8eef6;
--muted: #b8c4d6;
--line: #263244;
--link: #7ab7ff;
--code: #0f1623;
--shadow: 0 8px 24px rgba(0,0,0,.35);
--radius: 14px;
--max: 980px;
}
* { box-sizing: border-box; }
body {
margin: 0;
background: linear-gradient(180deg, #070a10, var(--bg));
color: var(--text);
font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
header {
border-bottom: 1px solid var(--line);
background: rgba(18,24,38,.7);
backdrop-filter: blur(10px);
}
.wrap {
max-width: var(--max);
margin: 0 auto;
padding: 20px 18px;
}
h1 {
margin: 6px 0 8px;
font-size: 28px;
letter-spacing: .2px;
}
.sub {
margin: 0;
color: var(--muted);
}
nav {
margin-top: 14px;
display: flex;
gap: 10px;
flex-wrap: wrap;
}
nav a {
color: var(--text);
text-decoration: none;
padding: 8px 12px;
border: 1px solid var(--line);
border-radius: 999px;
background: rgba(15,22,35,.6);
}
nav a:hover { border-color: #3a4b66; }
main { padding: 22px 0 40px; }
section {
background: rgba(18,24,38,.75);
border: 1px solid var(--line);
border-radius: var(--radius);
box-shadow: var(--shadow);
margin: 18px 0;
overflow: hidden;
}
.section-h {
padding: 18px 18px 12px;
border-bottom: 1px solid var(--line);
}
.section-h h2 {
margin: 0 0 6px;
font-size: 22px;
}
.section-h p {
margin: 0;
color: var(--muted);
}
.content {
padding: 16px 18px 18px;
}
ol {
margin: 0;
padding-left: 20px;
}
li { margin: 10px 0; }
.tip {
margin: 14px 0 0;
padding: 12px 12px;
background: rgba(15,22,35,.65);
border: 1px dashed #3a4b66;
border-radius: 12px;
color: var(--muted);
}
.grid {
display: grid;
grid-template-columns: 1fr;
gap: 14px;
margin-top: 14px;
}
figure {
margin: 0;
border: 1px solid var(--line);
border-radius: 12px;
overflow: hidden;
background: rgba(15,22,35,.6);
}
figure img {
display: block;
width: 100%;
height: auto;
}
figcaption {
padding: 10px 12px;
color: var(--muted);
font-size: 14px;
border-top: 1px solid var(--line);
}
.k {
display: inline-block;
padding: 2px 8px;
border-radius: 999px;
border: 1px solid var(--line);
background: rgba(15,22,35,.8);
font-size: 13px;
color: var(--text);
white-space: nowrap;
}
footer {
color: var(--muted);
font-size: 13px;
padding: 14px 0 30px;
}
@media (min-width: 860px) {
.grid.two { grid-template-columns: 1fr 1fr; }
}
</style>
</head>
<body>
<header>
<div class="wrap">
<h1>Dual Monitor Setup</h1>
<p class="sub">Instructions for extending displays in Windows and enabling dual monitors in Remote Desktop.</p>
<nav aria-label="Page sections">
<a href="#windows">Windows: Extend Displays</a>
<a href="#rdp">Remote Desktop: Use All Monitors</a>
</nav>
</div>
</header>
<main class="wrap">
<section id="windows">
<div class="section-h">
<h2>Windows: Change Display Mode to Extended (Split Screen)</h2>
<p>Switch from <span class="k">Duplicate these displays</span> to <span class="k">Extend these displays</span>.</p>
</div>
<div class="content">
<ol>
<li>Right-click on your desktop and select <span class="k">Display settings</span>.</li>
<li>In <span class="k">System &gt; Display</span>, open the drop-down under <span class="k">Multiple displays</span>.</li>
<li>Select <span class="k">Extend these displays</span>.</li>
</ol>
<div class="tip">
<strong>If the screens are reversed:</strong> Drag displays <span class="k">1</span> and <span class="k">2</span> to match your physical monitor layout. Use <span class="k">Identify</span> to show the number on each monitor.
</div>
<div class="grid two" role="list">
<figure role="listitem">
<img src="src/img/DualDisplay1.png" alt="Right-click desktop and select Display settings" />
<figcaption>Right-click the desktop and choose <span class="k">Display settings</span>.</figcaption>
</figure>
<figure role="listitem">
<img src="src/img/DualDisplay2.png" alt="Display settings showing Extend these displays option" />
<figcaption>Under <span class="k">Multiple displays</span>, select <span class="k">Extend these displays</span>.</figcaption>
</figure>
</div>
</div>
</section>
<section id="rdp">
<div class="section-h">
<h2>Remote Desktop: Change Connection to Dual Screen</h2>
<p>Enable <span class="k">Use all my monitors for the remote session</span> in the RDP connection settings.</p>
</div>
<div class="content">
<ol>
<li>Right-click the Remote Desktop connection icon (the saved <span class="k">.rdp</span> file) and select <span class="k">Edit</span>.
<div class="tip" style="margin-top:10px;">
If <span class="k">Edit</span> is not visible, click <span class="k">Show more options</span> first.
</div>
</li>
<li>In the Remote Desktop Connection window, select the <span class="k">Display</span> tab.</li>
<li>Check <span class="k">Use all my monitors for the remote session</span>, then return to the <span class="k">General</span> tab.</li>
<li>Click <span class="k">Save</span>, then click <span class="k">Connect</span>.</li>
</ol>
<div class="grid two" role="list">
<figure role="listitem">
<img src="src/img/RDP_DualDisplay0.png" alt="Context menu showing Display settings item" />
<figcaption>Example of a right-click menu; in this guide you will right-click the saved RDP icon/file.</figcaption>
</figure>
<figure role="listitem">
<img src="src/img/RDP_DualDisplay01.png" alt="Context menu showing Show more options" />
<figcaption>If needed, click <span class="k">Show more options</span> to reveal additional actions.</figcaption>
</figure>
<figure role="listitem">
<img src="src/img/RDP_DualDisplay2.png" alt="Remote Desktop Connection window with Display tab highlighted" />
<figcaption>Select the <span class="k">Display</span> tab.</figcaption>
</figure>
<figure role="listitem">
<img src="src/img/RDP_DualDisplay3.png" alt="Remote Desktop Connection Display tab showing Use all my monitors checkbox" />
<figcaption>Check <span class="k">Use all my monitors for the remote session</span>.</figcaption>
</figure>
<figure role="listitem">
<img src="src/img/RDP_DualDisplay4.png" alt="Remote Desktop Connection General tab showing Save button" />
<figcaption>Back on <span class="k">General</span>, click <span class="k">Save</span>, then <span class="k">Connect</span>.</figcaption>
</figure>
</div>
</div>
</section>
<footer>
</footer>
</main>
</body>
</html>