├── LICENSE ├── README.md ├── SECURITY.md ├── css └── site.css ├── fonts └── segoeuil.ttf ├── img ├── cloneWhite.svg ├── deployWhite.svg ├── lightbulbWhite.svg ├── stackWhite.svg ├── successCloudNew.svg └── tweetThis.svg └── index.html /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Microsoft Corporation 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This repo is no longer used. Please see https://github.com/microsoft/devops-project-samples for samples of Azure DevOps Project 2 | 3 | | Language | Platform | Author | 4 | | -------- | --------|--------| 5 | | HTML | Azure Web App, Virtual Machine| | 6 | 7 | # Sample HTML website 8 | 9 | Sample HTML/CSS web app that you can deploy to Azure. 10 | 11 | ## License 12 | 13 | See [LICENSE](LICENSE). 14 | 15 | 16 | ## Contributing 17 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 18 | For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or 19 | contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. 20 | 21 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Security 4 | 5 | Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). 6 | 7 | If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below. 8 | 9 | ## Reporting Security Issues 10 | 11 | **Please do not report security vulnerabilities through public GitHub issues.** 12 | 13 | Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report). 14 | 15 | If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey). 16 | 17 | You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). 18 | 19 | Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: 20 | 21 | * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) 22 | * Full paths of source file(s) related to the manifestation of the issue 23 | * The location of the affected source code (tag/branch/commit or direct URL) 24 | * Any special configuration required to reproduce the issue 25 | * Step-by-step instructions to reproduce the issue 26 | * Proof-of-concept or exploit code (if possible) 27 | * Impact of the issue, including how an attacker might exploit the issue 28 | 29 | This information will help us triage your report more quickly. 30 | 31 | If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs. 32 | 33 | ## Preferred Languages 34 | 35 | We prefer all communications to be in English. 36 | 37 | ## Policy 38 | 39 | Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd). 40 | 41 | 42 | -------------------------------------------------------------------------------- /css/site.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | height: 100%; 4 | width: 100%; 5 | padding: 0; 6 | margin: 0; 7 | } 8 | @font-face{ 9 | font-family: "Segoe UI"; 10 | src: url('../fonts/segoeuil.ttf'); 11 | } 12 | .main-container { 13 | height: 100%; 14 | width: 100%; 15 | background-color: #1d539d; 16 | color: white; 17 | padding-top: 6%; 18 | box-sizing: border-box; 19 | overflow-y: auto; 20 | overflow-x: hidden; 21 | font-family: "Segoe UI"; 22 | } 23 | 24 | .cloud-image { 25 | width: 1200px; 26 | height: 250px; 27 | padding-bottom: 50px; 28 | margin: auto; 29 | } 30 | 31 | .success-text { 32 | padding-bottom: 20px; 33 | font-size: 62px; 34 | line-height: 73px; 35 | } 36 | 37 | .description { 38 | font-size: 34px; 39 | line-height: 40px; 40 | } 41 | 42 | .next-steps-container { 43 | padding-top: 50px; 44 | } 45 | 46 | .next-steps-header { 47 | font-size: 24px; 48 | line-height: 28px; 49 | padding-bottom: 25px; 50 | } 51 | 52 | .next-steps-body { 53 | display: flex; 54 | flex-direction: column; 55 | } 56 | 57 | .step { 58 | display: flex; 59 | margin: 7px 0px; 60 | font-size: 15px; 61 | line-height: 21px; 62 | } 63 | 64 | .step-icon { 65 | height: 20px; 66 | width: 20px; 67 | margin-right: 10px; 68 | } 69 | 70 | .step-text a { 71 | color: white; 72 | text-decoration: none; 73 | } 74 | 75 | .step-text a:hover { 76 | color: white; 77 | text-decoration:underline; 78 | } 79 | 80 | .content { 81 | box-sizing: border-box; 82 | min-width: 700px; 83 | max-width: 830px; 84 | position: relative; 85 | margin: auto; 86 | } 87 | 88 | .tweet-container { 89 | min-width: 30px; 90 | min-height: 100px; 91 | margin: 0 20px; 92 | position: absolute; 93 | left: -100px; 94 | top: 110px; 95 | } 96 | .content-body{ 97 | min-width: 400px; 98 | } 99 | 100 | @media (max-width: 1024px) { 101 | .main-container{ 102 | padding-top: 1%; 103 | } 104 | .cloud-image { 105 | padding-bottom: 30px; 106 | } 107 | .next-steps-container { 108 | padding-top: 30px; 109 | } 110 | .next-steps-header { 111 | padding-bottom: 20px; 112 | } 113 | .success-text { 114 | font-size: 50px; 115 | line-height: 61px; 116 | padding-bottom: 10px; 117 | } 118 | .description { 119 | font-size: 26px; 120 | line-height: 30px; 121 | } 122 | 123 | .step { 124 | font-size: 12px; 125 | line-height: 18px; 126 | } 127 | .tweet-container { 128 | top: 80px; 129 | } 130 | .content{ 131 | max-width: 630px; 132 | min-width: 630px; 133 | } 134 | } 135 | -------------------------------------------------------------------------------- /fonts/segoeuil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/project-html-website/d06162d2958a0077cee4277de563030b887b843d/fonts/segoeuil.ttf -------------------------------------------------------------------------------- /img/cloneWhite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/deployWhite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/lightbulbWhite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/stackWhite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/successCloudNew.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/tweetThis.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |