1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > DevOps the Hard Way</ title >
7+ < link href ="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap " rel ="stylesheet ">
8+ < style >
9+ body {
10+ font-family : 'Inter' , sans-serif;
11+ display : flex;
12+ justify-content : center;
13+ align-items : center;
14+ height : 100vh ;
15+ margin : 0 ;
16+ background : linear-gradient (135deg , # f5f7fa 0% , # c3cfe2 100% );
17+ }
18+ .container {
19+ text-align : center;
20+ padding : 2rem ;
21+ background-color : rgba (255 , 255 , 255 , 0.9 );
22+ border-radius : 20px ;
23+ box-shadow : 0 10px 30px rgba (0 , 0 , 0 , 0.1 );
24+ backdrop-filter : blur (5px );
25+ max-width : 90% ;
26+ width : 400px ;
27+ }
28+ h1 {
29+ color : # 2d3748 ;
30+ margin-bottom : 1rem ;
31+ font-weight : 600 ;
32+ font-size : 1.8rem ;
33+ }
34+ p {
35+ color : # 4a5568 ;
36+ margin-bottom : 2rem ;
37+ font-size : 1rem ;
38+ line-height : 1.5 ;
39+ }
40+ .logo {
41+ width : 80px ;
42+ height : 80px ;
43+ margin-bottom : 1.5rem ;
44+ border-radius : 50% ;
45+ object-fit : cover;
46+ box-shadow : 0 4px 6px rgba (0 , 0 , 0 , 0.1 );
47+ }
48+ .button {
49+ display : inline-block;
50+ padding : 12px 24px ;
51+ background-color : # 4299e1 ;
52+ color : white;
53+ text-decoration : none;
54+ border-radius : 8px ;
55+ transition : all 0.3s ease;
56+ font-weight : 600 ;
57+ font-size : 1rem ;
58+ }
59+ .button : hover {
60+ background-color : # 3182ce ;
61+ transform : translateY (-2px );
62+ box-shadow : 0 4px 6px rgba (66 , 153 , 225 , 0.3 );
63+ }
64+ @media (max-width : 480px ) {
65+ .container {
66+ padding : 1.5rem ;
67+ }
68+ h1 {
69+ font-size : 1.5rem ;
70+ }
71+ p {
72+ font-size : 0.9rem ;
73+ }
74+ .button {
75+ padding : 10px 20px ;
76+ font-size : 0.9rem ;
77+ }
78+ }
79+ </ style >
80+ </ head >
81+ < body >
82+ < div class ="container ">
83+ < h1 > Hello, World from thomasthornton.cloud</ h1 >
84+ < p > Explore DevOps the Hard Way Azure: Hands-on learning for real-world skills.</ p >
85+ < a href ="https://github.com/thomast1906/DevOps-The-Hard-Way-Azure " class ="button "> Start Learning</ a >
86+ </ div >
87+ </ body >
88+ </ html >
0 commit comments