<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/2.6.1/fabric.min.css">
    <link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/2.6.1/fabric.components.min.css">
    <script
  src="https://code.jquery.com/jquery-3.1.1.min.js"
  integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
  crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.1/angular.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/ngOfficeUiFabric/0.14.0/ngOfficeUiFabric.min.js"></script>
    <script src="script.js"></script>
  </head> 

  <body ng-app="app" ng-controller='Controller as vm'>
    <a href="outlook.exe /c ipm.note /m 'someone@microsoft.com&subject=test%20subject&body=test%20body'>test</a>
    <uif-choicefield-group ng-model="selectedValue">
        <uif-choicefield-group-title><label class="ms-Label is-required">Pick a value</label></uif-choicefield-group-title>
        <uif-choicefield-option uif-type="radio" value="value1">Text 1</uif-choicefield-option>
        <uif-choicefield-option uif-type="radio" value="value2">Text 2</uif-choicefield-option>
        <uif-choicefield-option uif-type="radio" value="value3">Text 3</uif-choicefield-option>
        <uif-choicefield-option uif-type="radio" value="value4">Text 4</uif-choicefield-option>
    </uif-choicefield-group>
    
    
<uif-callout uif-action-text>
    <uif-callout-header>All of your favorite people</uif-callout-header>
    <uif-callout-content>People automatically puts together all of the people you care most about in one place.</uif-callout-content>
    <uif-callout-actions>
      <uif-button uif-type="command">
        <uif-icon uif-type="check"></uif-icon>
        Save
      </uif-button>
      <uif-button uif-type="command">
        <uif-icon uif-type="x"></uif-icon>
        Cancel
      </uif-button>
    </uif-callout-actions>
  </uif-callout>

  
  </body>
</html>
(function(){
  'use strict';
  
  angular.module('app',[
    'officeuifabric.core',
    'officeuifabric.components'
  ]);
  angular.module('app').controller('Controller', Controller);
  
  Controller.$inject = ['$http']
  function Controller($http){
    var vm = this;
    
    this.message = "message";
  }
   
}());
/* Styles go here */